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.16.1";
|
|
src = fetchurl {
|
|
url = mirror://gnu/gettext/gettext-0.16.1.tar.gz;
|
|
md5 = "3d9ad24301c6d6b17ec30704a13fe127";
|
|
};
|
|
configureFlags = "--disable-csharp";
|
|
}
|