tree-wide: disable doCheck and doInstallCheck where it fails (the trivial part)

This commit is contained in:
Jan Malakhovski
2018-04-25 04:18:46 +00:00
parent f07f0c6009
commit 7438083a4d
135 changed files with 326 additions and 52 deletions
+3 -1
View File
@@ -57,6 +57,9 @@ stdenv.mkDerivation rec {
./bootstrap --skip-git --gnulib-srcdir=./gnulib
'';
doCheck = false; # tries to wget some fonts
doInstallCheck = doCheck;
postInstall =
# get rid of the runtime dependency on python
lib.optionalString (!withPython) ''
@@ -72,4 +75,3 @@ stdenv.mkDerivation rec {
license = stdenv.lib.licenses.bsd3;
};
}