forked from M-Labs/nix-scripts
nixbld: fix munin
This commit is contained in:
parent
430647ef37
commit
e69ddf6c4c
|
@ -327,6 +327,14 @@ ACTION=="add", SUBSYSTEM=="tty", \
|
||||||
nixops = super.nixops.overrideAttrs(oa: {
|
nixops = super.nixops.overrideAttrs(oa: {
|
||||||
patches = oa.patches or [] ++ [ ./nixops-665.patch ];
|
patches = oa.patches or [] ++ [ ./nixops-665.patch ];
|
||||||
});
|
});
|
||||||
|
# https://github.com/NixOS/nixpkgs/issues/70930
|
||||||
|
# perl 5.30 breaks plugins
|
||||||
|
munin = super.munin.override {
|
||||||
|
perlPackages = super.perl528Packages;
|
||||||
|
rrdtool = super.rrdtool.override {
|
||||||
|
perl = super.perl528Packages.perl;
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
security.acme.certs = {
|
security.acme.certs = {
|
||||||
|
|
Loading…
Reference in New Issue