nixpkgs/pkgs/desktops/xfce/applications/xfce4-taskmanager/default.nix

17 lines
360 B
Nix
Raw Normal View History

{ mkXfceDerivation, exo, gtk3, libwnck3, libXmu }:
2017-12-17 07:02:52 -08:00
2019-05-20 16:53:29 -07:00
mkXfceDerivation {
2017-12-17 07:02:52 -08:00
category = "apps";
pname = "xfce4-taskmanager";
2021-02-24 13:06:29 -08:00
version = "1.4.2";
2017-12-17 07:02:52 -08:00
2021-02-24 13:06:29 -08:00
sha256 = "1l7k00y3d9j38g4hxjrcrh1y4s6s77sq4sjcadsbpzs6zdf05hld";
2017-12-17 07:02:52 -08:00
nativeBuildInputs = [ exo ];
2019-05-20 16:53:29 -07:00
buildInputs = [ gtk3 libwnck3 libXmu ];
meta = {
description = "Easy to use task manager for Xfce";
};
2017-12-17 07:02:52 -08:00
}