From b1a38cd40d8a51c0a575ac85fa9406d54565b825 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sat, 3 Oct 2015 16:28:06 +0200 Subject: [PATCH] nodejs: fixup --- pkgs/development/web/nodejs/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/web/nodejs/default.nix b/pkgs/development/web/nodejs/default.nix index ca46db39a3f..361fbf6bf4c 100644 --- a/pkgs/development/web/nodejs/default.nix +++ b/pkgs/development/web/nodejs/default.nix @@ -44,9 +44,10 @@ in stdenv.mkDerivation { patches = stdenv.lib.optionals stdenv.isDarwin [ ./no-xcode.patch ./pkg-libpath.patch ]; buildInputs = [ python zlib libuv openssl python ] - ++ optionals stdenv.isLinux [ utillinux http-parser ] + ++ optionals stdenv.isLinux [ utillinux http-parser ]; nativeBuildInputs = [ pkgconfig ] ++ optional stdenv.isDarwin libtool; + setupHook = ./setup-hook.sh; enableParallelBuilding = true;