From 2456150c1e88e6b2909a2ce3385c3b709246739a Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 23 Sep 2013 11:14:42 +0200 Subject: [PATCH] gettext: strip trailing whitespace --- pkgs/development/libraries/gettext/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/gettext/default.nix b/pkgs/development/libraries/gettext/default.nix index eea4e45a946..4d400a6ea7d 100644 --- a/pkgs/development/libraries/gettext/default.nix +++ b/pkgs/development/libraries/gettext/default.nix @@ -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;