mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
ac70cd728c
All code that was at xfce4-14 has been moved to xfce/*. Old expressions that aren't rewritten might be abandoned or broken. Additonally I've ported the xfce4-14 thunar expression to support thunarPlugins. We can now support this interface in the Xfce module again, although I'm not sure if we have any plugins packaged that support latest thunar.
18 lines
493 B
Nix
18 lines
493 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; {
|
|
description = "A volume keys control daemon for Xfce using pulseaudio";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = [ maintainers.abbradar ];
|
|
};
|
|
}
|