42c9938f11
GitOrigin-RevId: dcdf30a78a523296b5f9d44fb67afac485b64737
45 lines
627 B
Nix
45 lines
627 B
Nix
{ mkXfceDerivation
|
|
, clutter
|
|
, libXcomposite
|
|
, libXinerama
|
|
, libXdamage
|
|
, libX11
|
|
, libwnck3
|
|
, libxfce4ui
|
|
, libxfce4util
|
|
, garcon
|
|
, xfconf
|
|
, gtk3
|
|
, glib
|
|
, dbus-glib
|
|
}:
|
|
|
|
mkXfceDerivation {
|
|
category = "apps";
|
|
pname = "xfdashboard";
|
|
version = "0.9.2";
|
|
rev-prefix = "";
|
|
odd-unstable = false;
|
|
|
|
sha256 = "06pvzhhkr2mimsrzlkpsrzf5fxag4fhabyb3cpmgpyp5hcbgvaj3";
|
|
|
|
buildInputs = [
|
|
clutter
|
|
dbus-glib
|
|
garcon
|
|
glib
|
|
gtk3
|
|
libX11
|
|
libXcomposite
|
|
libXdamage
|
|
libXinerama
|
|
libwnck3
|
|
libxfce4ui
|
|
libxfce4util
|
|
xfconf
|
|
];
|
|
|
|
meta = {
|
|
description = "Gnome shell like dashboard";
|
|
};
|
|
}
|