3
0
Fork 0
forked from mirrors/nixpkgs

munin: fix build

fallout from perl 5.24 -> 5.28 update
This commit is contained in:
Uli Baum 2018-08-25 01:00:05 +02:00
parent 519012bcdf
commit da0ce8ca52

View file

@ -52,6 +52,9 @@ stdenv.mkDerivation rec {
perlPackages.IOStringy
];
# needs to find a local perl module during build
PERL_USE_UNSAFE_INC = stdenv.lib.optionalString (stdenv.lib.versionAtLeast (stdenv.lib.getVersion perl) "5.26") "1";
# TODO: tests are failing http://munin-monitoring.org/ticket/1390#comment:1
# NOTE: important, test command always exits with 0, think of a way to abort the build once tests pass
doCheck = false;