Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / desktops / xfce / panel-plugins / xfce4-datetime-plugin / default.nix
blobeaf090c348cff93a3615260e6c5f993986288158
1 { mkXfceDerivation
2 , lib
3 , intltool
4 , libxfce4ui
5 , xfce4-panel
6 , gettext
7 }:
9 mkXfceDerivation {
10   category = "panel-plugins";
11   pname = "xfce4-datetime-plugin";
12   version = "0.8.3";
14   rev-prefix = "xfce4-datetime-plugin-";
15   sha256 = "sha256-dpN5ZN7VjgO1GQ6v8NXuBKACyIwIosaiVGtmLEb6auI=";
17   nativeBuildInputs = [
18     gettext
19     intltool
20   ];
22   buildInputs = [
23     libxfce4ui
24     xfce4-panel
25   ];
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   };