mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 10:53:11 +00:00
31 lines
523 B
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;
|
|
};
|
|
}
|