about summary refs log tree commit diff
path: root/pkgs/tools/misc/getopt/default.nix
blob: d8e8bb9ab62968cc425004fb3fe161a8cd731e36 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{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";
  };
}