summary refs log tree commit diff
path: root/pkgs/applications/graphics/seg3d
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-04-26 19:54:51 +0200
committerVladimír Čunát <vcunat@gmail.com>2015-05-05 11:52:08 +0200
commit3b9ef2c71b275c924c4b28caf2f8a765bfc75d14 (patch)
tree0d6fcf3d6474bdb436c0af0c975efd35df8cd6cf /pkgs/applications/graphics/seg3d
parentb7c3c25218f8807920318ceb61b70f4343e0bd91 (diff)
downloadnixlib-3b9ef2c71b275c924c4b28caf2f8a765bfc75d14.tar
nixlib-3b9ef2c71b275c924c4b28caf2f8a765bfc75d14.tar.gz
nixlib-3b9ef2c71b275c924c4b28caf2f8a765bfc75d14.tar.bz2
nixlib-3b9ef2c71b275c924c4b28caf2f8a765bfc75d14.tar.lz
nixlib-3b9ef2c71b275c924c4b28caf2f8a765bfc75d14.tar.xz
nixlib-3b9ef2c71b275c924c4b28caf2f8a765bfc75d14.tar.zst
nixlib-3b9ef2c71b275c924c4b28caf2f8a765bfc75d14.zip
fix "libc}/lib" and similar references
Done mostly without any verification.
I didn't bother with libc}/include, as the path is still correct.
Diffstat (limited to 'pkgs/applications/graphics/seg3d')
-rw-r--r--pkgs/applications/graphics/seg3d/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/graphics/seg3d/default.nix b/pkgs/applications/graphics/seg3d/default.nix
index 23a2d23b1ae1..d645a15b02ea 100644
--- a/pkgs/applications/graphics/seg3d/default.nix
+++ b/pkgs/applications/graphics/seg3d/default.nix
@@ -13,8 +13,8 @@ stdenv.mkDerivation {
   patches = [ ./cstdio.patch ];
 
   cmakeFlags = [
-    "-DM_LIBRARY=${stdenv.glibc}/lib/libm.so"
-    "-DDL_LIBRARY=${stdenv.glibc}/lib/libdl.so"
+    "-DM_LIBRARY=${stdenv.glibc.out}/lib/libm.so"
+    "-DDL_LIBRARY=${stdenv.glibc.out}/lib/libdl.so"
     "-DBUILD_UTILS=1"
     "-DBUILD_SEG3D=1"
     "-DBUILD_DATAFLOW=0"