xfce4-13.xfce4-pulseaudio-plugin: init at 0.4.1 (#44314)

This commit is contained in:
volth 2018-08-01 20:45:32 +00:00 committed by xeji
parent 9820531cb5
commit 781428a849
2 changed files with 21 additions and 0 deletions

View File

@ -62,6 +62,8 @@ makeScope newScope (self: with self; {
xfce4-power-manager = callPackage ./xfce4-power-manager { };
xfce4-pulseaudio-plugin = callPackage ./xfce4-pulseaudio-plugin { };
xfce4-screenshooter = callPackage ./xfce4-screenshooter {
inherit (gnome3) libsoup;
};

View File

@ -0,0 +1,19 @@
{ mkXfceDerivation, automakeAddFlags, dbus-glib, dbus, gtk3, libpulseaudio
, libnotify, libxfce4ui, libxfce4util, xfce4-panel, xfconf }:
mkXfceDerivation rec {
category = "panel-plugins";
pname = "xfce4-pulseaudio-plugin";
version = "0.4.1";
sha256 = "1c8krpg3l6ki00ldd9hifc4bddysdm0w3x5w43fkr31j0zrscvfp";
nativeBuildInputs = [ automakeAddFlags ];
NIX_CFLAGS_COMPILE = [ "-I${dbus-glib.dev}/include/dbus-1.0" "-I${dbus.dev}/include/dbus-1.0" ];
postPatch = ''
substituteInPlace configure.ac.in --replace gio-2.0 gio-unix-2.0
'';
buildInputs = [ gtk3 libnotify libpulseaudio libxfce4ui libxfce4util xfce4-panel xfconf ];
}