Merge pull request #66568 from volth/xfdashboard

xfce4-14.xfdashboard: init at 0.7.5
This commit is contained in:
worldofpeace 2019-08-27 14:46:38 -04:00 committed by GitHub
commit 3f00767406
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 46 additions and 0 deletions

View File

@ -83,6 +83,8 @@ makeScope newScope (self: with self; {
xfce4-terminal = callPackage ./xfce4-terminal { };
xfdashboard = callPackage ./xfdashboard { };
xfce4-volumed-pulse = callPackage ./xfce4-volumed-pulse { };
xfce4-whiskermenu-plugin = callPackage ./xfce4-whiskermenu-plugin { };

View File

@ -0,0 +1,44 @@
{ mkXfceDerivation
, clutter
, libXcomposite
, libXinerama
, libXdamage
, libX11
, libwnck3
, libxfce4ui
, libxfce4util
, garcon
, xfconf
, gtk3
, glib
, dbus-glib
}:
mkXfceDerivation {
category = "apps";
pname = "xfdashboard";
version = "0.7.5";
rev = "0.7.5";
sha256 = "0d0kg90h3li41bs75z3xldljsglkz220pba39c54qznnzb8v8a2i";
buildInputs = [
clutter
dbus-glib
garcon
glib
gtk3
libX11
libXcomposite
libXdamage
libXinerama
libwnck3
libxfce4ui
libxfce4util
xfconf
];
meta = {
description = "Gnome shell like dashboard";
};
}