summary refs log tree commit diff
path: root/pkgs/development/libraries/blitz
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-04-28 00:41:28 +0300
committerTuomas Tynkkynen <tuomas@tuxera.com>2016-04-28 00:41:28 +0300
commitb465dc202f0ba6e5ce465c5dabca2b2a3560cad6 (patch)
treeabc9a5465a2c880cd4c37144b948d098c7bc3573 /pkgs/development/libraries/blitz
parent4ff8f377afcfcb206c585f165dc1332c9fb1eba1 (diff)
downloadnixlib-b465dc202f0ba6e5ce465c5dabca2b2a3560cad6.tar
nixlib-b465dc202f0ba6e5ce465c5dabca2b2a3560cad6.tar.gz
nixlib-b465dc202f0ba6e5ce465c5dabca2b2a3560cad6.tar.bz2
nixlib-b465dc202f0ba6e5ce465c5dabca2b2a3560cad6.tar.lz
nixlib-b465dc202f0ba6e5ce465c5dabca2b2a3560cad6.tar.xz
nixlib-b465dc202f0ba6e5ce465c5dabca2b2a3560cad6.tar.zst
nixlib-b465dc202f0ba6e5ce465c5dabca2b2a3560cad6.zip
boost: Kill unnecessary 'lib' output
This was split in somewhere pre-2014 without the current infra which
automates parts of this, in particular the output propagation.
Diffstat (limited to 'pkgs/development/libraries/blitz')
-rw-r--r--pkgs/development/libraries/blitz/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/blitz/default.nix b/pkgs/development/libraries/blitz/default.nix
index e6f59ca8efeb..ab34f64dfbfc 100644
--- a/pkgs/development/libraries/blitz/default.nix
+++ b/pkgs/development/libraries/blitz/default.nix
@@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
   patches = [ ./blitz-gcc47.patch ./blitz-testsuite-stencil-et.patch ];
 
   buildInputs = [ pkgconfig gfortran texinfo ]
-    ++ optional (boost != null) [ boost.lib ];
+    ++ optional (boost != null) [ boost.out ];
 
   configureFlags =
     [ "--enable-shared"
@@ -49,7 +49,7 @@ stdenv.mkDerivation rec {
     ++ optional enablePadding "--enable-array-length-padding"
     ++ optional enableSerialization "--enable-serialization"
     ++ optionals (boost != null) [ "--with-boost=${boost.dev}"
-                                   "--with-boost-libdir=${boost.lib}/lib" ]
+                                   "--with-boost-libdir=${boost.out}/lib" ]
     ++ optional stdenv.is64bit "--enable-64bit"
     ;