2020-02-11 07:59:24 -08:00
|
|
|
{ mkXfceDerivation
|
|
|
|
, automakeAddFlags
|
|
|
|
, dbus-glib
|
|
|
|
, dbus
|
2020-04-15 10:50:52 -07:00
|
|
|
, exo
|
2020-02-11 07:59:24 -08:00
|
|
|
, gtk3
|
|
|
|
, libpulseaudio
|
|
|
|
, libnotify
|
|
|
|
, libxfce4ui
|
|
|
|
, libxfce4util
|
|
|
|
, xfce4-panel
|
|
|
|
, xfconf
|
|
|
|
, keybinder3
|
|
|
|
, glib
|
|
|
|
}:
|
2018-08-01 13:45:32 -07:00
|
|
|
|
2019-08-13 14:52:01 -07:00
|
|
|
mkXfceDerivation {
|
2018-08-01 13:45:32 -07:00
|
|
|
category = "panel-plugins";
|
|
|
|
pname = "xfce4-pulseaudio-plugin";
|
2020-04-15 10:50:52 -07:00
|
|
|
version = "0.4.3";
|
|
|
|
sha256 = "1rfw2w8gl95iawiy57qlvz958dqjc8bmxnc3dma4rqzm6g46jkgq";
|
2018-08-01 13:45:32 -07:00
|
|
|
|
2020-02-11 07:59:24 -08:00
|
|
|
nativeBuildInputs = [
|
|
|
|
automakeAddFlags
|
|
|
|
];
|
2018-08-01 13:45:32 -07:00
|
|
|
|
2019-10-30 04:34:47 -07:00
|
|
|
NIX_CFLAGS_COMPILE = "-I${dbus-glib.dev}/include/dbus-1.0 -I${dbus.dev}/include/dbus-1.0";
|
2018-08-01 13:45:32 -07:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace configure.ac.in --replace gio-2.0 gio-unix-2.0
|
|
|
|
'';
|
|
|
|
|
2020-02-11 07:59:24 -08:00
|
|
|
buildInputs = [
|
2020-04-15 10:50:52 -07:00
|
|
|
exo
|
2020-02-11 07:59:24 -08:00
|
|
|
glib
|
|
|
|
gtk3
|
|
|
|
keybinder3
|
|
|
|
libnotify
|
|
|
|
libpulseaudio
|
|
|
|
libxfce4ui
|
|
|
|
libxfce4util
|
|
|
|
xfce4-panel
|
|
|
|
xfconf
|
|
|
|
];
|
2019-11-04 13:27:22 -08:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Adjust the audio volume of the PulseAudio sound system";
|
|
|
|
};
|
2018-08-01 13:45:32 -07:00
|
|
|
}
|