nodejs: explicitly put openssl in buildInputs

the linker won't find it otherwise :multiple-outputs:
This commit is contained in:
Mathijs Kwik 2013-06-15 23:59:48 +02:00 committed by Eelco Dolstra
parent 13cae540c8
commit 4b6d254ed7

View File

@ -42,9 +42,9 @@ in stdenv.mkDerivation {
(cd tools/gyp; patch -Np1 -i ${../../python-modules/gyp/no-darwin-cflags.patch})
'' else null;
buildInputs = [ python ]
buildInputs = [ python openssl ]
++ (optional stdenv.isLinux utillinux)
++ optionals stdenv.isDarwin [ pkgconfig openssl dtrace ];
++ optionals stdenv.isDarwin [ pkgconfig dtrace ];
setupHook = ./setup-hook.sh;
meta = {