mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
libuv: clarify darwin.libutil
dependency
This commit is contained in:
parent
59da82bf02
commit
9bf6e33999
@ -87,7 +87,11 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
|
||||
nativeBuildInputs = [ automake autoconf libtool pkg-config ];
|
||||
|
||||
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ darwin.libutil ];
|
||||
# This is part of the Darwin bootstrap, so we don’t always get
|
||||
# `libutil.dylib` automatically propagated through the SDK.
|
||||
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
|
||||
(lib.getLib darwin.libutil)
|
||||
];
|
||||
|
||||
preConfigure = ''
|
||||
LIBTOOLIZE=libtoolize ./autogen.sh
|
||||
|
Loading…
Reference in New Issue
Block a user