3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/xfce/applications/xfdashboard/default.nix

46 lines
627 B
Nix
Raw Normal View History

2019-08-13 16:39:43 +01:00
{ mkXfceDerivation
, clutter
, libXcomposite
, libXinerama
, libXdamage
, libX11
, libwnck3
, libxfce4ui
, libxfce4util
, garcon
, xfconf
, gtk3
, glib
, dbus-glib
}:
mkXfceDerivation {
category = "apps";
pname = "xfdashboard";
2020-04-15 18:50:54 +01:00
version = "0.7.7";
rev-prefix = "";
odd-unstable = false;
2019-08-13 16:39:43 +01:00
2020-04-15 18:50:54 +01:00
sha256 = "0b9pl3k8wl7svwhb9knhvr86gjg2904n788l8cbczwy046ql7pyc";
2019-08-13 16:39:43 +01:00
buildInputs = [
clutter
dbus-glib
garcon
glib
gtk3
libX11
libXcomposite
libXdamage
libXinerama
libwnck3
libxfce4ui
libxfce4util
xfconf
];
meta = {
description = "Gnome shell like dashboard";
};
}