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
227 B
Nix
10 lines
227 B
Nix
args: with args;
|
|
stdenv.mkDerivation {
|
|
name = "gettext-0.15";
|
|
src = fetchurl {
|
|
url = mirror://gnu/gettext/gettext-0.15.tar.gz;
|
|
md5 = "16bc6e4d37ac3d07495f737a2349a22b";
|
|
};
|
|
configureFlags = "--disable-csharp";
|
|
}
|