automake: Bump to 1.15

+46 -1
+43
pkgs/development/tools/misc/automake/automake-1.15.x.nix
··· 1 + { stdenv, fetchurl, perl, autoconf, makeWrapper, doCheck ? false }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "automake-1.15"; 5 + 6 + src = fetchurl { 7 + url = "mirror://gnu/automake/${name}.tar.xz"; 8 + sha256 = "0dl6vfi2lzz8alnklwxzfz624b95hb1ipjvd3mk177flmddcf24r"; 9 + }; 10 + 11 + buildInputs = [ perl autoconf ]; 12 + 13 + setupHook = ./setup-hook.sh; 14 + 15 + # Disable indented log output from Make, otherwise "make.test" will 16 + # fail. 17 + preCheck = "unset NIX_INDENT_MAKE"; 18 + inherit doCheck; 19 + 20 + # The test suite can run in parallel. 21 + enableParallelBuilding = true; 22 + 23 + # Don't fixup "#! /bin/sh" in Libtool, otherwise it will use the 24 + # "fixed" path in generated files! 25 + dontPatchShebangs = true; 26 + 27 + meta = { 28 + branch = "1.15"; 29 + homepage = "http://www.gnu.org/software/automake/"; 30 + description = "GNU standard-compliant makefile generator"; 31 + license = stdenv.lib.licenses.gpl2Plus; 32 + 33 + longDescription = '' 34 + GNU Automake is a tool for automatically generating 35 + `Makefile.in' files compliant with the GNU Coding 36 + Standards. Automake requires the use of Autoconf. 37 + ''; 38 + 39 + maintainers = [ stdenv.lib.maintainers.simons ]; 40 + 41 + platforms = stdenv.lib.platforms.all; 42 + }; 43 + }
+3 -1
pkgs/top-level/all-packages.nix
··· 4849 4849 4850 4850 autocutsel = callPackage ../tools/X11/autocutsel{ }; 4851 4851 4852 - automake = automake114x; 4852 + automake = automake115x; 4853 4853 4854 4854 automake110x = callPackage ../development/tools/misc/automake/automake-1.10.x.nix { }; 4855 4855 ··· 4860 4860 automake113x = callPackage ../development/tools/misc/automake/automake-1.13.x.nix { }; 4861 4861 4862 4862 automake114x = callPackage ../development/tools/misc/automake/automake-1.14.x.nix { }; 4863 + 4864 + automake115x = callPackage ../development/tools/misc/automake/automake-1.15.x.nix { }; 4863 4865 4864 4866 automoc4 = callPackage ../development/tools/misc/automoc4 { }; 4865 4867