3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #45610 from xeji/patch/munin

munin: fix build
This commit is contained in:
Sarah Brofeldt 2018-08-25 09:35:05 +02:00 committed by GitHub
commit 147804d430
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;