0aef28a212
I've added listOfListsToAttrs to lib because I don't like to type "name =" and "value =". svn path=/nixpkgs/trunk/; revision=10315
10 lines
231 B
Nix
10 lines
231 B
Nix
args: with args;
|
|
stdenv.mkDerivation {
|
|
name = "gettext-0.14.6";
|
|
src = fetchurl {
|
|
url = mirror://gnu/gettext/gettext-0.14.6.tar.gz;
|
|
md5 = "c26fc7f0a493c5c7c39bbc4e7ed42790";
|
|
};
|
|
configureFlags = "--disable-csharp";
|
|
}
|