darwin purity: libuv
This commit is contained in:
parent
a4fbe26ec8
commit
72737118fd
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, lib, fetchFromGitHub, autoconf, automake, libtool, pkgconfig }:
|
{ stdenv, lib, fetchFromGitHub, autoconf, automake, libtool, pkgconfig, CoreServices }:
|
||||||
|
|
||||||
let
|
let
|
||||||
stable = "stable";
|
stable = "stable";
|
||||||
@ -59,7 +59,8 @@ let
|
|||||||
mkWithAutotools = stability: version: sha256: stdenv.mkDerivation {
|
mkWithAutotools = stability: version: sha256: stdenv.mkDerivation {
|
||||||
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;
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
LIBTOOLIZE=libtoolize ./autogen.sh
|
LIBTOOLIZE=libtoolize ./autogen.sh
|
||||||
'';
|
'';
|
||||||
|
@ -7177,6 +7177,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;
|
||||||
});
|
});
|
||||||
|
|
||||||
libuv = libuvVersions.v1_6_1;
|
libuv = libuvVersions.v1_6_1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user