depot/third_party/nixpkgs/pkgs/desktops/xfce/applications/xfce4-dict/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

30 lines
525 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 = "A Dictionary Client for the Xfce desktop environment";
mainProgram = "xfce4-dict";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
};
}