mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
xfce.xfce4-time-out-plugin: init at 1.1.2 (#193477)
Co-authored-by: José Romildo Malaquias <malaquias@gmail.com>
This commit is contained in:
parent
ef1b870a43
commit
d9cd0f0eea
@ -137,6 +137,8 @@ lib.makeScope pkgs.newScope (self: with self; {
|
||||
|
||||
xfce4-systemload-plugin = callPackage ./panel-plugins/xfce4-systemload-plugin { };
|
||||
|
||||
xfce4-time-out-plugin = callPackage ./panel-plugins/xfce4-time-out-plugin { };
|
||||
|
||||
xfce4-timer-plugin = callPackage ./panel-plugins/xfce4-timer-plugin { };
|
||||
|
||||
xfce4-verve-plugin = callPackage ./panel-plugins/xfce4-verve-plugin { };
|
||||
|
@ -0,0 +1,20 @@
|
||||
{ lib, mkXfceDerivation, gtk3, libxfce4ui, libxfce4util, xfce4-panel, xfconf }:
|
||||
|
||||
mkXfceDerivation {
|
||||
category = "panel-plugins";
|
||||
pname = "xfce4-time-out-plugin";
|
||||
version = "1.1.2";
|
||||
rev-prefix = "xfce4-time-out-plugin-";
|
||||
odd-unstable = false;
|
||||
sha256 = "sha256-xfkQjlUfvm0YXs3bRJD4W/71VkaPq3Y+cDFVNiL/bjc=";
|
||||
|
||||
buildInputs = [
|
||||
gtk3 libxfce4ui libxfce4util xfce4-panel xfconf
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Panel plug-in to take periodical breaks from the computer";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ ] ++ teams.xfce.members;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user