Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 671888aeaab7
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 147804d430d8
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Aug 24, 2018

  1. munin: fix build

    fallout from perl 5.24 -> 5.28 update
    xeji committed Aug 24, 2018
    Copy the full SHA
    da0ce8c View commit details

Commits on Aug 25, 2018

  1. Merge pull request #45610 from xeji/patch/munin

    munin: fix build
    srhb authored Aug 25, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    147804d View commit details
Showing with 3 additions and 0 deletions.
  1. +3 −0 pkgs/servers/monitoring/munin/default.nix
3 changes: 3 additions & 0 deletions pkgs/servers/monitoring/munin/default.nix
Original file line number Diff line number Diff line change
@@ -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;