mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
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
|
||||
stable = "stable";
|
||||
@ -59,7 +59,8 @@ let
|
||||
mkWithAutotools = stability: version: sha256: stdenv.mkDerivation {
|
||||
name = mkName stability version;
|
||||
src = mkSrc version sha256;
|
||||
buildInputs = [ automake autoconf libtool pkgconfig ];
|
||||
buildInputs = [ automake autoconf libtool pkgconfig ]
|
||||
++ stdenv.lib.optional stdenv.isDarwin CoreServices;
|
||||
preConfigure = ''
|
||||
LIBTOOLIZE=libtoolize ./autogen.sh
|
||||
'';
|
||||
|
@ -7177,6 +7177,7 @@ let
|
||||
|
||||
libuvVersions = recurseIntoAttrs (callPackage ../development/libraries/libuv {
|
||||
automake = automake113x; # fails with 14
|
||||
inherit (darwin.apple_sdk.frameworks) CoreServices;
|
||||
});
|
||||
|
||||
libuv = libuvVersions.v1_6_1;
|
||||
|
Loading…
Reference in New Issue
Block a user