nixpkgs/pkgs/desktops/xfce/applications/xfce4-dict/default.nix

31 lines
523 B
Nix

{ lib
, mkXfceDerivation
, glib
, gtk3
, libxfce4ui
, libxfce4util
, xfce4-panel
}:
mkXfceDerivation {
category = "apps";
pname = "xfce4-dict";
version = "0.8.8";
sha256 = "sha256-nVpEeOSSfXCIxuIj0qie+oi8FVRiVUmDMPZZwIZ9L/k=";
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;
};
}