mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
munin: fix build
fallout from perl 5.24 -> 5.28 update
This commit is contained in:
parent
519012bcdf
commit
da0ce8ca52
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue