gettext: strip trailing whitespace

This commit is contained in:
Peter Simons 2013-09-23 11:14:42 +02:00
parent 46a7b1ea0a
commit 2456150c1e

View File

@ -2,7 +2,7 @@
stdenv.mkDerivation (rec {
name = "gettext-0.18.2";
src = fetchurl {
url = "mirror://gnu/gettext/${name}.tar.gz";
sha256 = "516a6370b3b3f46e2fc5a5e222ff5ecd76f3089bc956a7587a6e4f89de17714c";
@ -31,9 +31,9 @@ stdenv.mkDerivation (rec {
'';
buildInputs = [ xz ] ++ stdenv.lib.optional (!stdenv.isLinux) libiconv;
enableParallelBuilding = true;
crossAttrs = {
buildInputs = stdenv.lib.optional (stdenv.gccCross.libc ? libiconv)
stdenv.gccCross.libc.libiconv.crossDrv;