about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/xfce4-13/xfce4-volumed-pulse/default.nix
blob: 626451c70d633450d98b8184fe7cc3806833a47a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ lib, mkXfceDerivation, gtk3, libnotify ? null, libpulseaudio, keybinder3, xfconf }:

mkXfceDerivation rec {
  category = "apps";
  pname = "xfce4-volumed-pulse";
  version = "0.2.3";

  sha256 = "1rsjng9qmq7vzrx5bfxq76h63y501cfl1mksrxkf1x39by9r628j";

  buildInputs = [ gtk3 libnotify libpulseaudio keybinder3 xfconf ];

  meta = with lib; {
    license = licenses.gpl3Plus;
  };
}