automake117x: init 1.17 (#329245)

authored by Sandro and committed by GitHub ed5e3c37 e507ac8a

+42
+40
pkgs/development/tools/misc/automake/automake-1.17.x.nix
···
··· 1 + { lib, stdenv, fetchurl, perl, autoconf, updateAutotoolsGnuConfigScriptsHook }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "automake"; 5 + version = "1.17"; 6 + 7 + src = fetchurl { 8 + url = "mirror://gnu/automake/automake-${version}.tar.xz"; 9 + hash = "sha256-iSDB/EEeE7kL9wTvnbbynVQOdtIyyzssn03EzFmb2ZA="; 10 + }; 11 + 12 + strictDeps = true; 13 + nativeBuildInputs = [ updateAutotoolsGnuConfigScriptsHook autoconf perl ]; 14 + buildInputs = [ autoconf ]; 15 + 16 + setupHook = ./setup-hook.sh; 17 + 18 + doCheck = false; # takes _a lot_ of time, fails 3 out of 2698 tests, all seem to be related to paths 19 + doInstallCheck = false; # runs the same thing, fails the same tests 20 + 21 + # The test suite can run in parallel. 22 + enableParallelBuilding = true; 23 + 24 + # Don't fixup "#! /bin/sh" in Libtool, otherwise it will use the 25 + # "fixed" path in generated files! 26 + dontPatchShebangs = true; 27 + 28 + meta = with lib; { 29 + branch = "1.17"; 30 + homepage = "https://www.gnu.org/software/automake/"; 31 + description = "GNU standard-compliant makefile generator"; 32 + license = licenses.gpl2Plus; 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 + platforms = platforms.all; 39 + }; 40 + }
+2
pkgs/top-level/all-packages.nix
··· 17448 17449 automake116x = callPackage ../development/tools/misc/automake/automake-1.16.x.nix { }; 17450 17451 avrdude = callPackage ../development/embedded/avrdude { }; 17452 17453 b4 = callPackage ../development/tools/b4 { };
··· 17448 17449 automake116x = callPackage ../development/tools/misc/automake/automake-1.16.x.nix { }; 17450 17451 + automake117x = callPackage ../development/tools/misc/automake/automake-1.17.x.nix { }; 17452 + 17453 avrdude = callPackage ../development/embedded/avrdude { }; 17454 17455 b4 = callPackage ../development/tools/b4 { };