diff --git a/pkgs/tools/misc/getopt/getopt-1.1.4.nix b/pkgs/tools/misc/getopt/getopt-1.1.4.nix new file mode 100644 index 000000000000..c091863ccbf6 --- /dev/null +++ b/pkgs/tools/misc/getopt/getopt-1.1.4.nix @@ -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"; + }; +}