nixpkgs/pkgs/tools/misc/getopt/default.nix
Eelco Dolstra ef9b025dbe * Remove a bunch of unused Nix expressions.
svn path=/nixpkgs/trunk/; revision=6716
2006-10-12 15:43:01 +00:00

11 lines
231 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "getopt-1.1.4";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/getopt-1.1.4.tar.gz;
md5 = "02188ca68da27c4175d6e9f3da732101";
};
}