about summary refs log tree commit diff
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2014-06-27 18:15:05 -0400
committerShea Levy <shea@shealevy.com>2014-06-27 18:15:05 -0400
commit662ecd277a8fce57ebf006d697369304bb8d30f9 (patch)
tree1d0a0d9d840ee6bff03fcf5684167a83a464c337
parent63aff93c9b0711255c05261f5935af9d06b23c08 (diff)
downloadnixlib-662ecd277a8fce57ebf006d697369304bb8d30f9.tar
nixlib-662ecd277a8fce57ebf006d697369304bb8d30f9.tar.gz
nixlib-662ecd277a8fce57ebf006d697369304bb8d30f9.tar.bz2
nixlib-662ecd277a8fce57ebf006d697369304bb8d30f9.tar.lz
nixlib-662ecd277a8fce57ebf006d697369304bb8d30f9.tar.xz
nixlib-662ecd277a8fce57ebf006d697369304bb8d30f9.tar.zst
nixlib-662ecd277a8fce57ebf006d697369304bb8d30f9.zip
nix: propagate boehmgc
-rw-r--r--pkgs/tools/package-management/nix/unstable.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/tools/package-management/nix/unstable.nix b/pkgs/tools/package-management/nix/unstable.nix
index f61b9eb818ae..b81ab7cad424 100644
--- a/pkgs/tools/package-management/nix/unstable.nix
+++ b/pkgs/tools/package-management/nix/unstable.nix
@@ -14,7 +14,9 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ perl pkgconfig ];
 
-  buildInputs = [ curl openssl boehmgc sqlite ];
+  buildInputs = [ curl openssl sqlite ];
+
+  propagatedBuildInputs = [ boehmgc ];
 
   # Note: bzip2 is not passed as a build input, because the unpack phase
   # would end up using the wrong bzip2 when cross-compiling.