Add `gnumakeNix' attribute for GNU Make with `nix-log2xml' support.

svn path=/nixpkgs/branches/stdenv-updates/; revision=13055
This commit is contained in:
Ludovic Courtès 2008-10-13 09:04:56 +00:00
parent b43d4f87db
commit 64a6c823fc
1 changed files with 6 additions and 0 deletions

View File

@ -2264,6 +2264,12 @@ let
log2xmlSupport = getConfig [ "gnuMake" "log2xmlSupport" ] true;
};
# The modified version of GNU Make with support for `nix-log2xml'.
gnumakeNix = import ../development/tools/build-managers/gnumake {
inherit fetchurl stdenv;
log2xmlSupport = true;
};
gnumake380 = import ../development/tools/build-managers/gnumake-3.80 {
inherit fetchurl stdenv;
};