summary refs log tree commit diff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-10-13 10:03:44 +0000
committerLudovic Courtès <ludo@gnu.org>2009-10-13 10:03:44 +0000
commit37a65be4ffbf7b046320515ec3c8bd2f05821ca4 (patch)
tree68270e8442e752a7eb44cc92172c1ea9692ce794
parent257ffc8e73c59deb4583a0f97f0d66cb802707ce (diff)
downloadnixpkgs-37a65be4ffbf7b046320515ec3c8bd2f05821ca4.tar
nixpkgs-37a65be4ffbf7b046320515ec3c8bd2f05821ca4.tar.gz
nixpkgs-37a65be4ffbf7b046320515ec3c8bd2f05821ca4.tar.bz2
nixpkgs-37a65be4ffbf7b046320515ec3c8bd2f05821ca4.tar.lz
nixpkgs-37a65be4ffbf7b046320515ec3c8bd2f05821ca4.tar.xz
nixpkgs-37a65be4ffbf7b046320515ec3c8bd2f05821ca4.tar.zst
nixpkgs-37a65be4ffbf7b046320515ec3c8bd2f05821ca4.zip
gettext: Build on non-GNU systems.
svn path=/nixpkgs/trunk/; revision=17775
-rw-r--r--pkgs/development/libraries/gettext/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/gettext/default.nix b/pkgs/development/libraries/gettext/default.nix
index 2553b73d0eb..3ef348dc4b8 100644
--- a/pkgs/development/libraries/gettext/default.nix
+++ b/pkgs/development/libraries/gettext/default.nix
@@ -40,7 +40,7 @@ stdenv.mkDerivation (rec {
 
 //
 
-(if (stdenv.system == "i686-darwin" || stdenv.system == "i686-cygwin")
+(if (!stdenv.isLinux) # any non-GNU system
     then {
       buildInputs = [ libiconv ];
     }