nixpkgs/pkgs/development/libraries/gettext/0.16.x.nix
Yury G. Kudryashov 245655b7a1 Added support for overridable variants of package.
For details read comments near getVersion function, gettext is the current
example.

svn path=/nixpkgs/trunk/; revision=9235
2007-09-01 18:26:13 +00:00

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";
}