nodejs: explicitly put openssl in buildInputs

the linker won't find it otherwise :multiple-outputs:
This commit is contained in:
Mathijs Kwik
2013-08-21 17:35:53 +02:00
committed by Eelco Dolstra
parent 13cae540c8
commit 4b6d254ed7
+2 -2
View File
@@ -42,9 +42,9 @@ in stdenv.mkDerivation {
(cd tools/gyp; patch -Np1 -i ${../../python-modules/gyp/no-darwin-cflags.patch}) (cd tools/gyp; patch -Np1 -i ${../../python-modules/gyp/no-darwin-cflags.patch})
'' else null; '' else null;
buildInputs = [ python ] buildInputs = [ python openssl ]
++ (optional stdenv.isLinux utillinux) ++ (optional stdenv.isLinux utillinux)
++ optionals stdenv.isDarwin [ pkgconfig openssl dtrace ]; ++ optionals stdenv.isDarwin [ pkgconfig dtrace ];
setupHook = ./setup-hook.sh; setupHook = ./setup-hook.sh;
meta = { meta = {