nixpkgs/pkgs/development/tools/misc/automake/automake-1.10.x.nix

33 lines
772 B
Nix
Raw Normal View History

{stdenv, fetchurl, perl, autoconf}:
stdenv.mkDerivation rec {
name = "automake-1.10.1";
builder = ./builder.sh;
setupHook = ./setup-hook.sh;
src = fetchurl {
url = "mirror://gnu/automake/${name}.tar.bz2";
sha256 = "1v155av3vdsgj9fil66cw2g4vrqanvgn33kwv35xs3ibcyck8smj";
};
patches = [ ./test-broken-make.patch ];
buildInputs = [perl autoconf];
doCheck = 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+";
};
}