nixpkgs/pkgs/desktops/xfce4-13/xfce4-volumed-pulse/default.nix
Yegor Timoshenko 21159d8f17
xfce4-13: init
2017-12-21 14:40:42 +00:00

16 lines
382 B
Nix

{ lib, mkXfceDerivation, gtk2, libnotify ? null, libpulseaudio, keybinder, xfconf }:
mkXfceDerivation rec {
category = "apps";
pname = "xfce4-volumed-pulse";
version = "0.2.2";
sha256 = "0ccb98b433lx5fgdqd3nqqppg4sldr5p1is6pnx85h9wyxx5svhp";
buildInputs = [ gtk2 libnotify libpulseaudio keybinder xfconf ];
meta = with lib; {
license = licenses.gpl3Plus;
};
}