nixpkgs/pkgs/desktops/xfce/applications/xfce4-dict/default.nix
Bobby Rong df5407130f
xfce.xfce4-dict: Drop configure-gio.patch
Builds fine, build log does not mention gio-unix anywhere so it is
not accidently pulled in, and does not seem to have optional deps.
2024-03-24 20:16:58 +08:00

31 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;
};
}