forked from mirrors/nixpkgs
darwin purity: libuv, again
This commit is contained in:
parent
6f3729e3b3
commit
26da697f73
|
@ -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
|
||||
'';
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue