add stub for gettext 0.16.1

svn path=/nixpkgs/trunk/; revision=7483
This commit is contained in:
Armijn Hemel 2006-12-25 21:13:02 +00:00
parent c5e992c7bf
commit 1e96653eb6

View File

@ -0,0 +1,8 @@
{stdenv, fetchurl}: stdenv.mkDerivation {
name = "gettext-0.16.1";
src = fetchurl {
url = ftp://ftp.nluug.nl/pub/gnu/gettext/gettext-0.16.1.tar.gz;
md5 = "3d9ad24301c6d6b17ec30704a13fe127";
};
configureFlags = "--disable-csharp";
}