about summary refs log tree commit diff
path: root/pkgs/development/tools/build-managers/gnumake/default.nix
blob: 6ca56d57ba6d7da833df00d7b5b4f634e0015622 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{stdenv, fetchurl}: derivation {
  name = "gnumake-3.80";
  system = stdenv.system;
  builder = ./builder.sh;
  src = fetchurl {
    url = ftp://ftp.nluug.nl/pub/gnu/make/make-3.80.tar.bz2;
    md5 = "0bbd1df101bc0294d440471e50feca71";
  };
  stdenv = stdenv;
}