summary refs log tree commit diff
path: root/pkgs/desktops/xfce/panel-plugins/xfce4-datetime-plugin/default.nix
blob: 15f528fd5fc79fc9325663f06908d9d50e811181 (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
32
33
{ mkXfceDerivation
, stdenv
, intltool
, libxfce4ui
, xfce4-panel
, gtk3
, gettext
}:

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

  rev-prefix = "datetime-";
  sha256 = "12drh7y70d70r93lpv43fkj5cbyl0vciz4a41nxrknrfbhxrvyah";

  nativeBuildInputs = [
    gettext
    intltool
  ];

  buildInputs = [
    gtk3
    libxfce4ui
    xfce4-panel
  ];

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