about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/xfce/applications/xfce4-taskmanager/default.nix
blob: 5336d5ce41f391a66415c6c3b2ad2c1264e197af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{ lib
, mkXfceDerivation
, exo
, glib
, gtk3
, libxfce4ui
, xfconf
, libwnck
, libX11
, libXmu
}:

mkXfceDerivation {
  category = "apps";
  pname = "xfce4-taskmanager";
  version = "1.5.7";
  odd-unstable = false;

  sha256 = "sha256-znadP7rrP/IxH22U1D9p6IHZ1J1JfXoCVk8iKUgrkJw=";

  nativeBuildInputs = [
    exo
  ];

  buildInputs = [
    glib
    gtk3
    libxfce4ui
    xfconf
    libwnck
    libX11
    libXmu
  ];

  meta = with lib; {
    description = "Easy to use task manager for Xfce";
    maintainers = with maintainers; [ ] ++ teams.xfce.members;
  };
}