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
This commit is contained in:
Armijn Hemel 2006-07-06 17:55:41 +00:00
parent f0aa3a56ae
commit 976b5ad98e

View file

@ -0,0 +1,10 @@
{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";
};
}