48 lines
1.3 KiB
Nix
48 lines
1.3 KiB
Nix
|
{stdenv, fetchurl, perl, autoconf, makeWrapper, doCheck ? true}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "automake-1.12.1";
|
||
|
|
||
|
# TODO: Remove the `aclocal' wrapper when $ACLOCAL_PATH support is
|
||
|
# available upstream; see
|
||
|
# <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9026>.
|
||
|
builder = ./builder.sh;
|
||
|
|
||
|
setupHook = ./setup-hook.sh;
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "mirror://gnu/automake/${name}.tar.xz";
|
||
|
sha256 = "0gqpbk51lbk0a4ixwdp4cnabzaj9qdsxypr1cmbs5hjan9lhhx9j";
|
||
|
};
|
||
|
|
||
|
buildInputs = [perl autoconf makeWrapper];
|
||
|
|
||
|
inherit doCheck;
|
||
|
|
||
|
# The test suite can run in parallel.
|
||
|
enableParallelBuilding = true;
|
||
|
|
||
|
# Disable indented log output from Make, otherwise "make.test" will
|
||
|
# fail.
|
||
|
preCheck = "unset NIX_INDENT_MAKE";
|
||
|
|
||
|
# Don't fixup "#! /bin/sh" in Libtool, otherwise it will use the
|
||
|
# "fixed" path in generated files!
|
||
|
dontPatchShebangs = true;
|
||
|
|
||
|
meta = {
|
||
|
homepage = http://www.gnu.org/software/automake/;
|
||
|
description = "GNU Automake, a GNU standard-compliant makefile generator";
|
||
|
|
||
|
longDescription = ''
|
||
|
GNU Automake is a tool for automatically generating
|
||
|
`Makefile.in' files compliant with the GNU Coding
|
||
|
Standards. Automake requires the use of Autoconf.
|
||
|
'';
|
||
|
|
||
|
license = "GPLv2+";
|
||
|
|
||
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
||
|
};
|
||
|
}
|