depot/third_party/nixpkgs/pkgs/desktops/xfce/applications/xfdashboard/default.nix
Default email 13da32182d Project import generated by Copybara.
GitOrigin-RevId: a7855f2235a1876f97473a76151fec2afa02b287
2022-08-21 15:32:41 +02:00

46 lines
679 B
Nix

{ lib
, mkXfceDerivation
, clutter
, libXcomposite
, libXinerama
, libXdamage
, libX11
, libwnck
, libxfce4ui
, libxfce4util
, garcon
, xfconf
, gtk3
, glib
, dbus-glib
}:
mkXfceDerivation {
category = "apps";
pname = "xfdashboard";
version = "1.0.0";
rev-prefix = "";
sha256 = "sha256-iC41I0u9id9irUNyjuvRRzSldF3dzRYkaxb/fgptnq4=";
buildInputs = [
clutter
dbus-glib
garcon
glib
gtk3
libX11
libXcomposite
libXdamage
libXinerama
libwnck
libxfce4ui
libxfce4util
xfconf
];
meta = with lib; {
description = "Gnome shell like dashboard";
maintainers = with maintainers; [ ] ++ teams.xfce.members;
};
}