summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2022-11-20 12:30:25 +0800
committerGitHub <noreply@github.com>2022-11-20 12:30:25 +0800
commit3c77bae4c3c7c2530ef82f4d31e2e14eca722c00 (patch)
treeed23aff93e3f2d81cc9b10d475b7a1d95cab4441 /pkgs/development/libraries
parentf2de4779f74de8eff66f94c26f6a877f0535c450 (diff)
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.
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/entt/default.nix6
1 files changed, 0 insertions, 6 deletions
diff --git a/pkgs/development/libraries/entt/default.nix b/pkgs/development/libraries/entt/default.nix
index 306cdd52f476d..6f88610863960 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++";