nspr: fix darwin build

- needs CoreServices
This commit is contained in:
Matthew Bauer
2016-08-16 19:25:44 +00:00
parent b9d9cea3c7
commit a79ff78ec4
2 changed files with 7 additions and 2 deletions
+4 -1
View File
@@ -1,4 +1,5 @@
{ stdenv, fetchurl }:
{ stdenv, fetchurl
, CoreServices ? null }:
let version = "4.12"; in
@@ -27,6 +28,8 @@ stdenv.mkDerivation {
moveToOutput share "$dev" # just aclocal
'';
buildInputs = [] ++ stdenv.lib.optionals stdenv.isDarwin [ CoreServices ];
enableParallelBuilding = true;
meta = {