a3d4720129
GitOrigin-RevId: e182da8622a354d44c39b3d7a542dc12cd7baa5f
17 lines
473 B
Nix
17 lines
473 B
Nix
{ lib, mkXfceDerivation, exo, gtk3, libxfce4ui, xfconf, libwnck, libXmu }:
|
|
|
|
mkXfceDerivation {
|
|
category = "apps";
|
|
pname = "xfce4-taskmanager";
|
|
version = "1.5.5";
|
|
|
|
sha256 = "sha256-worHYB9qibRxMaCYQ0+nHA9CSTColewgahyrXiPOnQA=";
|
|
|
|
nativeBuildInputs = [ exo ];
|
|
buildInputs = [ gtk3 libxfce4ui xfconf libwnck libXmu ];
|
|
|
|
meta = with lib; {
|
|
description = "Easy to use task manager for Xfce";
|
|
maintainers = with maintainers; [ ] ++ teams.xfce.members;
|
|
};
|
|
}
|