Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / desktops / xfce / applications / xfce4-dict / default.nix
blob8910985473bf8ea420bf7817c9c57ddcd824a346
1 { lib
2 , mkXfceDerivation
3 , glib
4 , gtk3
5 , libxfce4ui
6 , libxfce4util
7 , xfce4-panel
8 }:
10 mkXfceDerivation {
11   category = "apps";
12   pname = "xfce4-dict";
13   version = "0.8.6";
15   sha256 = "sha256-a7St9iH+jzwq/llrMJkuqwgQrDFEjqebs/N6Lxa3dkI=";
17   buildInputs = [
18     glib
19     gtk3
20     libxfce4ui
21     libxfce4util
22     xfce4-panel
23   ];
25   meta = with lib; {
26     description = "Dictionary Client for the Xfce desktop environment";
27     mainProgram = "xfce4-dict";
28     maintainers = with maintainers; [ ] ++ teams.xfce.members;
29   };