diff options
author | makefu <github@syntax-fehler.de> | 2022-02-14 20:06:53 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2022-02-14 20:06:53 +0100 |
commit | e3785b22b2c6cb173a58fd066c4eda80a67fb872 (patch) | |
tree | 7019868ccd5db1a4b3b7dd746679c1514c797533 /makefu/5pkgs | |
parent | a139dd358b948bd5228ade9222b615e7c5006691 (diff) |
ma pkgs: add workaround for collectd
Diffstat (limited to 'makefu/5pkgs')
-rw-r--r-- | makefu/5pkgs/default.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/makefu/5pkgs/default.nix b/makefu/5pkgs/default.nix index 0040b2786..fd26f462e 100644 --- a/makefu/5pkgs/default.nix +++ b/makefu/5pkgs/default.nix @@ -34,6 +34,10 @@ in { # install -D -m644 _rclone $out/etc/bash_completion.d/rclone # ''; #}); + + # Hotfix for https://github.com/NixOS/nixpkgs/issues/157543 + collectd = super.collectd.override { xen = null; }; + alsa-hdspconf = callPackage ./custom/alsa-tools { alsaToolTarget="hdspconf";}; alsa-hdspmixer = callPackage ./custom/alsa-tools { alsaToolTarget="hdspmixer";}; alsa-hdsploader = callPackage ./custom/alsa-tools { alsaToolTarget="hdsploader";}; |