···11-{ stdenv, fetchurl, perl, autoconf, doCheck ? false }:
11+{ stdenv, fetchurl, perl, autoconf }:
2233stdenv.mkDerivation rec {
44 name = "automake-1.16.1";
···1616 # Disable indented log output from Make, otherwise "make.test" will
1717 # fail.
1818 preCheck = "unset NIX_INDENT_MAKE";
1919- inherit doCheck;
1919+ doCheck = false; # takes _a lot_ of time, fails 3 out of 2698 tests, all seem to be related to paths
2020+ doInstallCheck = false; # runs the same thing, fails the same tests
20212122 # The test suite can run in parallel.
2223 enableParallelBuilding = true;