From 3c77bae4c3c7c2530ef82f4d31e2e14eca722c00 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Sun, 20 Nov 2022 12:30:25 +0800 Subject: [PATCH] entt: remove unused substituteInPlace substituteStream(): WARNING: pattern '${prefix}/@CMAKE_INSTALL_INCLUDEDIR@' doesn't match anything in file 'cmake/in/entt.pc.in' It looks like https://github.com/skypjack/entt/issues/890 has been resolved. --- pkgs/development/libraries/entt/default.nix | 6 ------ 1 file changed, 6 deletions(-) diff --git a/pkgs/development/libraries/entt/default.nix b/pkgs/development/libraries/entt/default.nix index 306cdd52f476..6f8861086396 100644 --- a/pkgs/development/libraries/entt/default.nix +++ b/pkgs/development/libraries/entt/default.nix @@ -12,12 +12,6 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - # https://github.com/skypjack/entt/issues/890 - postPatch = '' - substituteInPlace cmake/in/entt.pc.in \ - --replace '$'{prefix}/@CMAKE_INSTALL_INCLUDEDIR@ @CMAKE_INSTALL_FULL_INCLUDEDIR@ - ''; - meta = with lib; { homepage = "https://github.com/skypjack/entt"; description = "A header-only, tiny and easy to use library for game programming and much more written in modern C++";