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
|
let
|
||||||
stable = "stable";
|
stable = "stable";
|
||||||
@ -60,7 +62,7 @@ let
|
|||||||
name = mkName stability version;
|
name = mkName stability version;
|
||||||
src = mkSrc version sha256;
|
src = mkSrc version sha256;
|
||||||
buildInputs = [ automake autoconf libtool pkgconfig ]
|
buildInputs = [ automake autoconf libtool pkgconfig ]
|
||||||
++ stdenv.lib.optional stdenv.isDarwin CoreServices;
|
++ stdenv.lib.optionals stdenv.isDarwin [ ApplicationServices CoreServices ];
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
LIBTOOLIZE=libtoolize ./autogen.sh
|
LIBTOOLIZE=libtoolize ./autogen.sh
|
||||||
'';
|
'';
|
||||||
|
@ -7180,7 +7180,7 @@ let
|
|||||||
|
|
||||||
libuvVersions = recurseIntoAttrs (callPackage ../development/libraries/libuv {
|
libuvVersions = recurseIntoAttrs (callPackage ../development/libraries/libuv {
|
||||||
automake = automake113x; # fails with 14
|
automake = automake113x; # fails with 14
|
||||||
inherit (darwin.apple_sdk.frameworks) CoreServices;
|
inherit (darwin.apple_sdk.frameworks) ApplicationServices CoreServices;
|
||||||
});
|
});
|
||||||
|
|
||||||
libuv = libuvVersions.v1_6_1;
|
libuv = libuvVersions.v1_6_1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user