245655b7a1
For details read comments near getVersion function, gettext is the current example. svn path=/nixpkgs/trunk/; revision=9235
9 lines
234 B
Nix
9 lines
234 B
Nix
{stdenv, fetchurl}: stdenv.mkDerivation {
|
|
name = "gettext-0.14.6";
|
|
src = fetchurl {
|
|
url = mirror://gnu/gettext/gettext-0.14.6.tar.gz;
|
|
md5 = "c26fc7f0a493c5c7c39bbc4e7ed42790";
|
|
};
|
|
configureFlags = "--disable-csharp";
|
|
}
|