summary refs log tree commit diff
path: root/pkgs/tools/misc/getopt/default.nix
blob: c34230ddeeef6fbd5c49d2cb6cb649e9f3537fa4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{stdenv, fetchurl}: derivation {
  name = "getopt-1.1.3";
  system = stdenv.system;
  builder = ./builder.sh;
  src = fetchurl {
    url = http://huizen.dds.nl/~frodol/getopt-1.1.3.tar.gz;
    md5 = "7b7637dcb0ac531f1af29f4d6b018e86";
  };
  stdenv = stdenv;
}