mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
gettext: fix build on darwin
Hash on Linuxes is unchanged. For details about the error see discussion at: https://github.com/NixOS/nixpkgs/commit/0ffb98828e87612
This commit is contained in:
parent
6fdd92742c
commit
fc15721871
1 changed files with 3 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl, libiconv, xz }:
|
||||
{ stdenv, fetchurl, libiconv, libintlOrEmpty, xz }:
|
||||
|
||||
stdenv.mkDerivation (rec {
|
||||
name = "gettext-0.18.2";
|
||||
|
@ -30,7 +30,8 @@ stdenv.mkDerivation (rec {
|
|||
fi
|
||||
'';
|
||||
|
||||
buildInputs = [ xz ] ++ stdenv.lib.optional (!stdenv.isLinux) libiconv;
|
||||
buildInputs = [ xz ]
|
||||
++ libintlOrEmpty ++ stdenv.lib.optional (!stdenv.isLinux) libiconv;
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
|
|
Loading…
Reference in a new issue