summary refs log tree commit diff
path: root/pkgs/desktops/xfce/panel-plugins/xfce4-datetime-plugin/default.nix
blob: 44d255c5fa64a73bf8866fe9c40afd0cbff9080c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ mkXfceDerivation
, lib
, intltool
, libxfce4ui
, xfce4-panel
, gettext
}:

mkXfceDerivation {
  category = "panel-plugins";
  pname = "xfce4-datetime-plugin";
  version = "0.8.1";

  rev-prefix = "xfce4-datetime-plugin-";
  sha256 = "06h13bmh2sni4qbr3kfnqaa5dq5f48h4xkywrm9pa6h2nyvn4rma";

  nativeBuildInputs = [
    gettext
    intltool
  ];

  buildInputs = [
    libxfce4ui
    xfce4-panel
  ];

  meta = with lib; {
    description = "Shows the date and time in the panel, and a calendar appears when you left-click on it";
    maintainers = [ maintainers.AndersonTorres ];
  };
}