nixpkgs/pkgs/desktops/xfce/panel-plugins/xfce4-pulseaudio-plugin/default.nix
José Romildo eac8053674 xfce.xfce4-pulseaudio-plugin: 0.4.4 -> 0.4.5
- Update to version 0.4.5
- Unused dbus-glib include has been removed in version 0.4.3
2022-09-16 10:21:07 -03:00

47 lines
801 B
Nix

{ lib
, mkXfceDerivation
, automakeAddFlags
, exo
, gtk3
, libpulseaudio
, libnotify
, libxfce4ui
, libxfce4util
, xfce4-panel
, xfconf
, keybinder3
, glib
}:
mkXfceDerivation {
category = "panel-plugins";
pname = "xfce4-pulseaudio-plugin";
version = "0.4.5";
sha256 = "sha256-oRkvKSDEEepNwWIMDYLH/a034xxFhhOx+vp8O2UfTos=";
nativeBuildInputs = [
automakeAddFlags
];
postPatch = ''
substituteInPlace configure.ac.in --replace gio-2.0 gio-unix-2.0
'';
buildInputs = [
exo
glib
gtk3
keybinder3
libnotify
libpulseaudio
libxfce4ui
libxfce4util
xfce4-panel
xfconf
];
meta = with lib; {
description = "Adjust the audio volume of the PulseAudio sound system";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
};
}