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