summary refs log tree commit diff
path: root/pkgs/tools/misc/getopt/default.nix
blob: 41bc2ffc99dfbad0bc457a581faefb54472d1ed6 (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://tarballs.nixos.org/getopt-1.1.4.tar.gz;
    md5 = "02188ca68da27c4175d6e9f3da732101";
  };
}