mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 18:23:09 +00:00
0bbec286d7
https://gitlab.xfce.org/panel-plugins/xfce4-time-out-plugin/-/compare/xfce4-time-out-plugin-1.1.2...xfce4-time-out-plugin-1.1.3
34 lines
635 B
Nix
34 lines
635 B
Nix
{ lib
|
|
, mkXfceDerivation
|
|
, glib
|
|
, gtk3
|
|
, libxfce4ui
|
|
, libxfce4util
|
|
, xfce4-panel
|
|
, xfconf
|
|
}:
|
|
|
|
mkXfceDerivation {
|
|
category = "panel-plugins";
|
|
pname = "xfce4-time-out-plugin";
|
|
version = "1.1.3";
|
|
rev-prefix = "xfce4-time-out-plugin-";
|
|
odd-unstable = false;
|
|
sha256 = "sha256-sm6y3t4nngZDg4Q8S3SVkNR++XkCKysQePN6Qei1OY8=";
|
|
|
|
buildInputs = [
|
|
glib
|
|
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;
|
|
};
|
|
}
|