3
0
Fork 0
forked from mirrors/nixpkgs

darwin purity: libuv, again

This commit is contained in:
Jude Taylor 2015-06-21 00:56:48 -07:00
parent 6f3729e3b3
commit 26da697f73
2 changed files with 5 additions and 3 deletions

View file

@ -1,4 +1,6 @@
{ stdenv, lib, fetchFromGitHub, autoconf, automake, libtool, pkgconfig, CoreServices }:
{ stdenv, lib, fetchFromGitHub, autoconf, automake, libtool, pkgconfig
, ApplicationServices, CoreServices }:
let
stable = "stable";
@ -60,7 +62,7 @@ let
name = mkName stability version;
src = mkSrc version sha256;
buildInputs = [ automake autoconf libtool pkgconfig ]
++ stdenv.lib.optional stdenv.isDarwin CoreServices;
++ stdenv.lib.optionals stdenv.isDarwin [ ApplicationServices CoreServices ];
preConfigure = ''
LIBTOOLIZE=libtoolize ./autogen.sh
'';

View file

@ -7180,7 +7180,7 @@ let
libuvVersions = recurseIntoAttrs (callPackage ../development/libraries/libuv {
automake = automake113x; # fails with 14
inherit (darwin.apple_sdk.frameworks) CoreServices;
inherit (darwin.apple_sdk.frameworks) ApplicationServices CoreServices;
});
libuv = libuvVersions.v1_6_1;