nixpkgs/pkgs/development/tools/build-managers/gnumake/3.80/default.nix

19 lines
343 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "gnumake-3.80";
2016-08-03 13:03:04 -07:00
src = fetchurl {
url = http://tarballs.nixos.org/make-3.80.tar.bz2;
2016-09-10 11:06:13 -07:00
sha256 = "06rgz6npynr8whmf7rxgkyvcz0clf3ggwf4cyhj3fcscn3kkk6x9";
};
2016-08-03 13:03:04 -07:00
patches = [./log.patch];
2016-08-03 13:03:04 -07:00
hardeningDisable = [ "format" ];
meta = {
platforms = stdenv.lib.platforms.unix;
};
}