nixpkgs/pkgs/development/libraries/gettext/gettext-0.14.6.nix
Eelco Dolstra 1442e8ec22 * Copy a bunch of files to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=6711
2006-10-12 13:50:54 +00:00

9 lines
247 B
Nix

{stdenv, fetchurl}: stdenv.mkDerivation {
name = "gettext-0.14.6";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/gettext-0.14.6.tar.gz;
md5 = "c26fc7f0a493c5c7c39bbc4e7ed42790";
};
configureFlags = "--disable-csharp";
}