about summary refs log tree commit diff
path: root/pkgs/development/libraries/grantlee/5
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2017-05-27 16:19:26 -0500
committerThomas Tuegel <ttuegel@mailbox.org>2017-08-21 06:51:33 -0500
commit96e2a3bd85b50aa074eb6f36c9e600c3257d59e3 (patch)
treecc692568113708cd0ea9c5615717ade6b17be478 /pkgs/development/libraries/grantlee/5
parent6ba0ab1b92c89aa09847e06df27dda0938a3a45c (diff)
downloadnixlib-96e2a3bd85b50aa074eb6f36c9e600c3257d59e3.tar
nixlib-96e2a3bd85b50aa074eb6f36c9e600c3257d59e3.tar.gz
nixlib-96e2a3bd85b50aa074eb6f36c9e600c3257d59e3.tar.bz2
nixlib-96e2a3bd85b50aa074eb6f36c9e600c3257d59e3.tar.lz
nixlib-96e2a3bd85b50aa074eb6f36c9e600c3257d59e3.tar.xz
nixlib-96e2a3bd85b50aa074eb6f36c9e600c3257d59e3.tar.zst
nixlib-96e2a3bd85b50aa074eb6f36c9e600c3257d59e3.zip
grantlee5: update meta.homepage
Diffstat (limited to 'pkgs/development/libraries/grantlee/5')
-rw-r--r--pkgs/development/libraries/grantlee/5/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/libraries/grantlee/5/default.nix b/pkgs/development/libraries/grantlee/5/default.nix
index 6fae90a8d890..13c350f2ecf9 100644
--- a/pkgs/development/libraries/grantlee/5/default.nix
+++ b/pkgs/development/libraries/grantlee/5/default.nix
@@ -21,8 +21,9 @@ mkDerivation rec {
   postFixup =
     # Disabuse CMake of the notion that libraries are in $dev
     ''
-      sed -i $dev/lib/cmake/Grantlee5/GrantleeTargets-release.cmake \
-          -e "s|\''${_IMPORT_PREFIX}|$out|"
+      for mod in $dev/lib/cmake/Grantlee5/GrantleeTargets-*.cmake; do
+          sed -i $mod -e "s|\''${_IMPORT_PREFIX}|$out|"
+      done
     '';
 
   setupHook = ./setup-hook.sh;