about summary refs log tree commit diff
path: root/pkgs/desktops/xfce/applications/xfce4-dict/default.nix
blob: 83d7fe5b620aa7dad3ab87086025a17efea51c51 (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
{ lib
, mkXfceDerivation
, glib
, gtk3
, libxfce4ui
, libxfce4util
, xfce4-panel
}:

mkXfceDerivation {
  category = "apps";
  pname = "xfce4-dict";
  version = "0.8.7";

  sha256 = "sha256-1xjprnQG2P+LYAhEGxdu1wpoP/+C+udmNqb/3zEojr0=";

  buildInputs = [
    glib
    gtk3
    libxfce4ui
    libxfce4util
    xfce4-panel
  ];

  meta = with lib; {
    description = "Dictionary Client for the Xfce desktop environment";
    mainProgram = "xfce4-dict";
    maintainers = with maintainers; [ ] ++ teams.xfce.members;
  };
}