nixpkgs/pkgs/tools/misc/getopt/getopt-1.1.4.nix
Armijn Hemel 976b5ad98e add new version of getopt, but don't make it the default (that would cause sdf
to rebuild, and stratego, and ...)

svn path=/nixpkgs/trunk/; revision=5619
2006-07-06 17:55:41 +00:00

11 lines
247 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "getopt-1.1.4";
builder = ./builder.sh;
src = fetchurl {
url = http://software.frodo.looijaard.name/getopt/files/getopt-1.1.4.tar.gz;
md5 = "02188ca68da27c4175d6e9f3da732101";
};
}