2021-12-19 01:06:50 +00:00
|
|
|
{ lib
|
|
|
|
, mkXfceDerivation
|
2020-04-24 23:36:52 +00:00
|
|
|
, clutter
|
|
|
|
, libXcomposite
|
|
|
|
, libXinerama
|
|
|
|
, libXdamage
|
|
|
|
, libX11
|
2021-06-28 23:13:55 +00:00
|
|
|
, libwnck
|
2020-04-24 23:36:52 +00:00
|
|
|
, libxfce4ui
|
|
|
|
, libxfce4util
|
|
|
|
, garcon
|
|
|
|
, xfconf
|
|
|
|
, gtk3
|
|
|
|
, glib
|
|
|
|
, dbus-glib
|
|
|
|
}:
|
|
|
|
|
|
|
|
mkXfceDerivation {
|
|
|
|
category = "apps";
|
|
|
|
pname = "xfdashboard";
|
2022-08-21 13:32:41 +00:00
|
|
|
version = "1.0.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
rev-prefix = "";
|
|
|
|
|
2022-08-21 13:32:41 +00:00
|
|
|
sha256 = "sha256-iC41I0u9id9irUNyjuvRRzSldF3dzRYkaxb/fgptnq4=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
clutter
|
|
|
|
dbus-glib
|
|
|
|
garcon
|
|
|
|
glib
|
|
|
|
gtk3
|
|
|
|
libX11
|
|
|
|
libXcomposite
|
|
|
|
libXdamage
|
|
|
|
libXinerama
|
2021-06-28 23:13:55 +00:00
|
|
|
libwnck
|
2020-04-24 23:36:52 +00:00
|
|
|
libxfce4ui
|
|
|
|
libxfce4util
|
|
|
|
xfconf
|
|
|
|
];
|
|
|
|
|
2021-12-19 01:06:50 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Gnome shell like dashboard";
|
2021-12-19 01:06:50 +00:00
|
|
|
maintainers = with maintainers; [ ] ++ teams.xfce.members;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|