bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
18 lines
559 B
Nix
18 lines
559 B
Nix
{ lib, mkXfceDerivation, gtk3, libnotify, libpulseaudio, keybinder3, xfconf }:
|
|
|
|
mkXfceDerivation {
|
|
category = "apps";
|
|
pname = "xfce4-volumed-pulse";
|
|
version = "0.2.4";
|
|
|
|
sha256 = "sha256-NDIJRjKV5aoM2sLhZ6WmoynOc4yz55KpuiTJDMLMA5Y=";
|
|
|
|
buildInputs = [ gtk3 libnotify libpulseaudio keybinder3 xfconf ];
|
|
|
|
meta = with lib; {
|
|
description = "Volume keys control daemon for Xfce using pulseaudio";
|
|
mainProgram = "xfce4-volumed-pulse";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ abbradar ] ++ teams.xfce.members;
|
|
};
|
|
}
|