acba9240cd
It's currently the same machine, but tarballs.nixos.org should become an S3/CloudFront site eventually.
11 lines
223 B
Nix
11 lines
223 B
Nix
{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";
|
|
};
|
|
}
|