acba9240cd
It's currently the same machine, but tarballs.nixos.org should become an S3/CloudFront site eventually.
11 lines
222 B
Nix
11 lines
222 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "gnumake-3.80";
|
|
src = fetchurl {
|
|
url = http://tarballs.nixos.org/make-3.80.tar.bz2;
|
|
md5 = "0bbd1df101bc0294d440471e50feca71";
|
|
};
|
|
patches = [./log.patch];
|
|
}
|