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.
17 lines
365 B
Nix
17 lines
365 B
Nix
{ lib, mkXfceDerivation, exo, gtk3, libwnck3, libXmu }:
|
|
|
|
mkXfceDerivation {
|
|
category = "apps";
|
|
pname = "xfce4-taskmanager";
|
|
version = "1.2.2";
|
|
|
|
sha256 = "03js0pmhrybxa7hrp3gx4rm7j061ansv0bp2dwhnbrdpmzjysysc";
|
|
|
|
nativeBuildInputs = [ exo ];
|
|
buildInputs = [ gtk3 libwnck3 libXmu ];
|
|
|
|
meta = {
|
|
description = "Easy to use task manager for Xfce";
|
|
};
|
|
}
|