bigloo: explicitly depend on unistring on darwin (#140521)
Co-authored-by: figsoda <figsoda@pm.me>
This commit is contained in:
@@ -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 ];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user