nixpkgs/pkgs/desktops/xfce/applications/xfdashboard/default.nix

46 lines
624 B
Nix
Raw Normal View History

2019-08-13 15:39:43 +00:00
{ mkXfceDerivation
, clutter
, libXcomposite
, libXinerama
, libXdamage
, libX11
2021-06-23 18:22:04 +00:00
, libwnck
2019-08-13 15:39:43 +00:00
, libxfce4ui
, libxfce4util
, garcon
, xfconf
, gtk3
, glib
, dbus-glib
}:
mkXfceDerivation {
category = "apps";
pname = "xfdashboard";
2021-04-13 21:48:51 +00:00
version = "0.9.2";
rev-prefix = "";
odd-unstable = false;
2019-08-13 15:39:43 +00:00
sha256 = "sha256-Q6r9FoPl+vvqZWP5paAjT3VX3M/6TvqzrrGKPCH8+xo=";
2019-08-13 15:39:43 +00:00
buildInputs = [
clutter
dbus-glib
garcon
glib
gtk3
libX11
libXcomposite
libXdamage
libXinerama
2021-06-23 18:22:04 +00:00
libwnck
2019-08-13 15:39:43 +00:00
libxfce4ui
libxfce4util
xfconf
];
meta = {
description = "Gnome shell like dashboard";
};
}