2020-04-24 23:36:52 +00:00
|
|
|
{ lib, mkXfceDerivation, gtk3, libnotify, libpulseaudio, keybinder3, xfconf }:
|
|
|
|
|
|
|
|
mkXfceDerivation {
|
|
|
|
category = "apps";
|
|
|
|
pname = "xfce4-volumed-pulse";
|
|
|
|
version = "0.2.3";
|
|
|
|
|
2021-06-28 23:13:55 +00:00
|
|
|
sha256 = "sha256-EgmTk19p9OBmz3rWQB0LoPhhoDm4u1V6/vvgitOzUuc=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-12-28 21:21:41 +00:00
|
|
|
# https://gitlab.xfce.org/apps/xfce4-volumed-pulse/-/merge_requests/3
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace configure.ac.in \
|
|
|
|
--replace "2.16" "2.26"
|
|
|
|
'';
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
buildInputs = [ gtk3 libnotify libpulseaudio keybinder3 xfconf ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A volume keys control daemon for Xfce using pulseaudio";
|
|
|
|
license = licenses.gpl3Plus;
|
2021-12-19 01:06:50 +00:00
|
|
|
maintainers = with maintainers; [ abbradar ] ++ teams.xfce.members;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|