3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/xfce/applications/xfce4-volumed-pulse/default.nix

18 lines
493 B
Nix
Raw Normal View History

2019-08-17 23:36:42 +01:00
{ lib, mkXfceDerivation, gtk3, libnotify, libpulseaudio, keybinder3, xfconf }:
2017-12-17 15:02:52 +00:00
2019-08-13 22:52:01 +01:00
mkXfceDerivation {
2017-12-17 15:02:52 +00:00
category = "apps";
pname = "xfce4-volumed-pulse";
version = "0.2.3";
2017-12-17 15:02:52 +00:00
sha256 = "1rsjng9qmq7vzrx5bfxq76h63y501cfl1mksrxkf1x39by9r628j";
2017-12-17 15:02:52 +00:00
buildInputs = [ gtk3 libnotify libpulseaudio keybinder3 xfconf ];
2017-12-17 15:02:52 +00:00
meta = with lib; {
description = "A volume keys control daemon for Xfce using pulseaudio";
2017-12-17 15:02:52 +00:00
license = licenses.gpl3Plus;
maintainers = [ maintainers.abbradar ];
2017-12-17 15:02:52 +00:00
};
}