1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/misc/getopt/default.nix

11 lines
231 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "getopt-1.1.3";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/getopt-1.1.3.tar.gz;
md5 = "7b7637dcb0ac531f1af29f4d6b018e86";
};
}