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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
703 B
Nix
Raw Normal View History

2021-11-28 18:51:44 +00:00
{ lib
, mkXfceDerivation
2019-08-13 15:39:43 +00:00
, 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-10-28 02:04:23 +00:00
version = "0.9.5";
rev-prefix = "";
odd-unstable = false;
2019-08-13 15:39:43 +00:00
2021-10-28 02:04:23 +00:00
sha256 = "sha256-nb1zY78MUjEOJF59MYIOY1rxo3JFmzH9yTJVUGsOwOA=";
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
];
2021-11-28 18:51:44 +00:00
meta = with lib; {
2019-08-13 15:39:43 +00:00
description = "Gnome shell like dashboard";
2021-11-28 18:51:44 +00:00
maintainers = with maintainers; [ ] ++ teams.xfce.members;
2019-08-13 15:39:43 +00:00
};
}