gyp: Fix on darwin

Signed-off-by: Shea Levy <shea@shealevy.com>
This commit is contained in:
Shea Levy
2013-05-28 17:27:28 -04:00
parent fe009bcbc4
commit c982e84df4
4 changed files with 112 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchurl, gyp, utillinux ? null }:
{ stdenv, fetchurl, gyp, utillinux }:
let
version = "2.1";
@@ -16,7 +16,7 @@ in stdenv.mkDerivation {
buildFlags = [ "BUILDTYPE=Release" ];
buildInputs = [ gyp utillinux ];
buildInputs = [ gyp ] ++ stdenv.lib.optional stdenv.isLinux utillinux;
doCheck = true;