repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git]
/
pkgs
/
desktops
/
xfce
/
applications
/
xfce4-dict
/
default.nix
blob
8910985473bf8ea420bf7817c9c57ddcd824a346
1
{ lib
2
, mkXfceDerivation
3
, glib
4
, gtk3
5
, libxfce4ui
6
, libxfce4util
7
, xfce4-panel
8
}:
9
10
mkXfceDerivation {
11
category = "apps";
12
pname = "xfce4-dict";
13
version = "0.8.6";
14
15
sha256 = "sha256-a7St9iH+jzwq/llrMJkuqwgQrDFEjqebs/N6Lxa3dkI=";
16
17
buildInputs = [
18
glib
19
gtk3
20
libxfce4ui
21
libxfce4util
22
xfce4-panel
23
];
24
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
};
30
}