Skip to content

Commit

Permalink
gettext: libiconv should be a buildInput
Browse files Browse the repository at this point in the history
(cherry picked from commit 2cc7f1a)
  • Loading branch information
Ericson2314 committed Sep 3, 2017
1 parent 2eecbcc commit 9be4014
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/development/libraries/gettext/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ stdenv.mkDerivation rec {
fi
'';

nativeBuildInputs = [ xz xz.bin ] ++ stdenv.lib.optional (!stdenv.isLinux && !hostPlatform.isCygwin) libiconv; # HACK, see #10874 (and 14664)
nativeBuildInputs = [ xz xz.bin ];
# HACK, see #10874 (and 14664)
buildInputs = stdenv.lib.optional (!stdenv.isLinux && !hostPlatform.isCygwin) libiconv;

enableParallelBuilding = true;

Expand Down

0 comments on commit 9be4014

Please sign in to comment.