summary refs log tree commit diff
path: root/pkgs/development/libraries/gettext
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2010-05-10 12:33:43 +0000
committerLudovic Courtès <ludo@gnu.org>2010-05-10 12:33:43 +0000
commitd15d6267fa396eb8db3412f6a364ddaedce98c31 (patch)
tree9e19a2f5ec951a8f0e9df0a01a1239ee1cea750b /pkgs/development/libraries/gettext
parentc2c499005728846f123eb9c4263c946633984a34 (diff)
downloadnixpkgs-d15d6267fa396eb8db3412f6a364ddaedce98c31.tar
nixpkgs-d15d6267fa396eb8db3412f6a364ddaedce98c31.tar.gz
nixpkgs-d15d6267fa396eb8db3412f6a364ddaedce98c31.tar.bz2
nixpkgs-d15d6267fa396eb8db3412f6a364ddaedce98c31.tar.lz
nixpkgs-d15d6267fa396eb8db3412f6a364ddaedce98c31.tar.xz
nixpkgs-d15d6267fa396eb8db3412f6a364ddaedce98c31.tar.zst
nixpkgs-d15d6267fa396eb8db3412f6a364ddaedce98c31.zip
GNU gettext 0.18.
svn path=/nixpkgs/branches/stdenv-updates/; revision=21702
Diffstat (limited to 'pkgs/development/libraries/gettext')
-rw-r--r--pkgs/development/libraries/gettext/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/libraries/gettext/default.nix b/pkgs/development/libraries/gettext/default.nix
index 826dae2d314..fc425571a37 100644
--- a/pkgs/development/libraries/gettext/default.nix
+++ b/pkgs/development/libraries/gettext/default.nix
@@ -1,11 +1,11 @@
 { stdenv, fetchurl, libiconv }:
 
 stdenv.mkDerivation (rec {
-  name = "gettext-0.17";
+  name = "gettext-0.18";
   
   src = fetchurl {
     url = "mirror://gnu/gettext/${name}.tar.gz";
-    sha256 = "1fipjpaxxwifdw6cbr7mkxp1yvy643i38nhlh7124bqnisxki5i0";
+    sha256 = "1rbgm6sxgq218pridn2vji5nlj3hdf4vs75rz00wc0wcw4fjqd02";
   };
 
   configureFlags = "--disable-csharp";
@@ -51,6 +51,7 @@ stdenv.mkDerivation (rec {
     homepage = http://www.gnu.org/software/gettext/;
 
     maintainers = [ stdenv.lib.maintainers.ludo ];
+    platforms = stdenv.lib.platforms.all;
   };
 }