lol
1{ mkXfceDerivation
2, lib
3, intltool
4, libxfce4ui
5, xfce4-panel
6, gettext
7}:
8
9mkXfceDerivation {
10 category = "panel-plugins";
11 pname = "xfce4-datetime-plugin";
12 version = "0.8.3";
13
14 rev-prefix = "xfce4-datetime-plugin-";
15 sha256 = "sha256-dpN5ZN7VjgO1GQ6v8NXuBKACyIwIosaiVGtmLEb6auI=";
16
17 nativeBuildInputs = [
18 gettext
19 intltool
20 ];
21
22 buildInputs = [
23 libxfce4ui
24 xfce4-panel
25 ];
26
27 meta = with lib; {
28 description = "Shows the date and time in the panel, and a calendar appears when you left-click on it";
29 maintainers = with maintainers; [ ] ++ teams.xfce.members;
30 };
31}