summary refs log tree commit diff
path: root/pkgs/development/tools/build-managers/gnumake/default.nix
blob: cd58f2624edb67a2b3f87e0c0b6571cfe72b8e23 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "gnumake-3.81";
  src = fetchurl {
    url = http://ftp.gnu.org/pub/gnu/make/make-3.81.tar.bz2;
    md5 = "354853e0b2da90c527e35aabb8d6f1e6";
  };
  patches = [./log.diff];
}