8ac5e011d6
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
17 lines
493 B
Nix
17 lines
493 B
Nix
{ lib, mkXfceDerivation, gtk3, libnotify, libpulseaudio, keybinder3, xfconf }:
|
|
|
|
mkXfceDerivation {
|
|
category = "apps";
|
|
pname = "xfce4-volumed-pulse";
|
|
version = "0.2.3";
|
|
|
|
sha256 = "1rsjng9qmq7vzrx5bfxq76h63y501cfl1mksrxkf1x39by9r628j";
|
|
|
|
buildInputs = [ gtk3 libnotify libpulseaudio keybinder3 xfconf ];
|
|
|
|
meta = with lib; {
|
|
description = "A volume keys control daemon for Xfce using pulseaudio";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = [ maintainers.abbradar ];
|
|
};
|
|
}
|