mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
3b6cc2a5c2
svn path=/nixpkgs/trunk/; revision=18881
42 lines
1.1 KiB
Nix
42 lines
1.1 KiB
Nix
{stdenv, fetchurl, perl, autoconf, makeWrapper, doCheck ? true}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "automake-1.11.1";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/automake/${name}.tar.bz2";
|
|
sha256 = "1bn7jl11wbkyy4ivgja92zkyjj8w3agwp2xnf7g8f7qa1qy9s5av";
|
|
};
|
|
|
|
buildInputs = [perl autoconf makeWrapper];
|
|
|
|
inherit doCheck;
|
|
|
|
# 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 ];
|
|
};
|
|
}
|