bigloo: explicitly depend on unistring on darwin (#140521)
Co-authored-by: figsoda <figsoda@pm.me>
This commit is contained in:
parent
644c68ae53
commit
561f938ff1
1 changed files with 4 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
{ fetchurl, lib, stdenv, autoconf, automake, libtool, gmp
|
||||
, darwin
|
||||
, darwin, libunistring
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
@ -13,9 +13,10 @@ stdenv.mkDerivation rec {
|
|||
|
||||
nativeBuildInputs = [ autoconf automake libtool ];
|
||||
|
||||
buildInputs = lib.optional stdenv.isDarwin
|
||||
buildInputs = lib.optionals stdenv.isDarwin [
|
||||
darwin.apple_sdk.frameworks.ApplicationServices
|
||||
;
|
||||
libunistring
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [ gmp ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue