summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMathijs Kwik <mathijs@bluescreen303.nl>2013-06-15 23:59:48 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2013-08-21 17:35:53 +0200
commit4b6d254ed76df1224aab55c7095676445edf1e2a (patch)
tree4f065c7e382770b3283ea740e790c7aebd13fa7d /pkgs
parent13cae540c838adbc0df331349d25c62a5cd77ce4 (diff)
downloadnixlib-4b6d254ed76df1224aab55c7095676445edf1e2a.tar
nixlib-4b6d254ed76df1224aab55c7095676445edf1e2a.tar.gz
nixlib-4b6d254ed76df1224aab55c7095676445edf1e2a.tar.bz2
nixlib-4b6d254ed76df1224aab55c7095676445edf1e2a.tar.lz
nixlib-4b6d254ed76df1224aab55c7095676445edf1e2a.tar.xz
nixlib-4b6d254ed76df1224aab55c7095676445edf1e2a.tar.zst
nixlib-4b6d254ed76df1224aab55c7095676445edf1e2a.zip
nodejs: explicitly put openssl in buildInputs
the linker won't find it otherwise :multiple-outputs:
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/web/nodejs/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/web/nodejs/default.nix b/pkgs/development/web/nodejs/default.nix
index 6660cccc6fbf..0c51ca22b64a 100644
--- a/pkgs/development/web/nodejs/default.nix
+++ b/pkgs/development/web/nodejs/default.nix
@@ -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 = {