mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-06 20:44:13 +00:00
16 lines
373 B
Nix
16 lines
373 B
Nix
{ lib, mkXfceDerivation, gtk3, libnotify, libpulseaudio, keybinder3, xfconf }:
|
|
|
|
mkXfceDerivation {
|
|
category = "apps";
|
|
pname = "xfce4-volumed-pulse";
|
|
version = "0.2.3";
|
|
|
|
sha256 = "1rsjng9qmq7vzrx5bfxq76h63y501cfl1mksrxkf1x39by9r628j";
|
|
|
|
buildInputs = [ gtk3 libnotify libpulseaudio keybinder3 xfconf ];
|
|
|
|
meta = with lib; {
|
|
license = licenses.gpl3Plus;
|
|
};
|
|
}
|