depot/third_party/nixpkgs/pkgs/desktops/xfce/applications/xfce4-dict/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

30 lines
523 B
Nix

{ lib
, mkXfceDerivation
, glib
, gtk3
, libxfce4ui
, libxfce4util
, xfce4-panel
}:
mkXfceDerivation {
category = "apps";
pname = "xfce4-dict";
version = "0.8.6";
sha256 = "sha256-a7St9iH+jzwq/llrMJkuqwgQrDFEjqebs/N6Lxa3dkI=";
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;
};
}