mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
163a382727
This allows it to build on non-glibc platforms (e.g., Mac OS X). svn path=/nixpkgs/trunk/; revision=970
10 lines
226 B
Nix
10 lines
226 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "getopt-1.1.3";
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://huizen.dds.nl/~frodol/getopt-1.1.3.tar.gz;
|
|
md5 = "7b7637dcb0ac531f1af29f4d6b018e86";
|
|
};
|
|
}
|