nixpkgs/pkgs/desktops/xfce/applications/xfce4-volumed-pulse/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
520 B
Nix
Raw Normal View History

2019-08-17 22:36:42 +00:00
{ lib, mkXfceDerivation, gtk3, libnotify, libpulseaudio, keybinder3, xfconf }:
2017-12-17 15:02:52 +00:00
2019-08-13 21:52:01 +00: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 = "sha256-EgmTk19p9OBmz3rWQB0LoPhhoDm4u1V6/vvgitOzUuc=";
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;
2021-11-28 18:51:44 +00:00
maintainers = with maintainers; [ abbradar ] ++ teams.xfce.members;
2017-12-17 15:02:52 +00:00
};
}