libbfd: add libintl dependency for darwin.
This commit is contained in:
parent
ca67994224
commit
dc032a866b
1 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
{ lib, stdenv
|
{ lib, stdenv
|
||||||
, fetchpatch, gnu-config, autoreconfHook, bison, binutils-unwrapped
|
, fetchpatch, gnu-config, autoreconfHook, bison, binutils-unwrapped
|
||||||
, libiberty, zlib
|
, libiberty, libintl, zlib
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
|
@ -32,7 +32,7 @@ stdenv.mkDerivation {
|
||||||
|
|
||||||
strictDeps = true;
|
strictDeps = true;
|
||||||
nativeBuildInputs = [ autoreconfHook bison ];
|
nativeBuildInputs = [ autoreconfHook bison ];
|
||||||
buildInputs = [ libiberty zlib.dev ];
|
buildInputs = [ libiberty zlib ] ++ lib.optionals stdenv.isDarwin [ libintl ];
|
||||||
|
|
||||||
configurePlatforms = [ "build" "host" ];
|
configurePlatforms = [ "build" "host" ];
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
|
|
Loading…
Reference in a new issue