nixpkgs/pkgs/desktops/xfce/panel-plugins/xfce4-pulseaudio-plugin/default.nix
Bobby Rong dea81c90bd
xfce.xfce4-pulseaudio-plugin: Drop automakeAddFlags
We don't use it anywhere, the substituteInPlace already does the job.
2024-03-24 20:19:58 +08:00

45 lines
761 B
Nix

{ lib
, mkXfceDerivation
, exo
, gtk3
, libcanberra
, libpulseaudio
, libnotify
, libxfce4ui
, libxfce4util
, xfce4-panel
, xfconf
, keybinder3
, glib
}:
mkXfceDerivation {
category = "panel-plugins";
pname = "xfce4-pulseaudio-plugin";
version = "0.4.8";
sha256 = "sha256-7vcjARm0O+/hVNFzOpxcgAnqD+wRNg5/eqXLcq4t/iU=";
postPatch = ''
substituteInPlace configure.ac.in --replace gio-2.0 gio-unix-2.0
'';
buildInputs = [
exo
glib
gtk3
keybinder3
libcanberra
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;
};
}