2022-01-11 17:59:01 +01:00
|
|
|
final: prev:
|
|
|
|
{
|
|
|
|
# overlay created because nixpkgs's `i3status-rust` depended on `notmuch`, and
|
|
|
|
# `notmuch`'s tests were briefly broken. the features I'm disabling, I don't
|
|
|
|
# need anyway: (at the time of writing)
|
|
|
|
#
|
|
|
|
# - notmuch
|
|
|
|
# - maildir
|
|
|
|
i3status-rust = prev.i3status-rust.overrideAttrs (oldAttrs: {
|
|
|
|
buildInputs = builtins.attrValues {
|
|
|
|
inherit (final)
|
|
|
|
dbus
|
2022-02-07 14:59:57 +01:00
|
|
|
lm_sensors
|
2022-01-11 17:59:01 +01:00
|
|
|
openssl
|
|
|
|
pulseaudio
|
|
|
|
;
|
|
|
|
};
|
|
|
|
cargoBuildFeatures = [ "pulseaudio" ];
|
|
|
|
});
|
|
|
|
}
|