c594a97518
GitOrigin-RevId: 301aada7a64812853f2e2634a530ef5d34505048
31 lines
600 B
Nix
31 lines
600 B
Nix
{ mkXfceDerivation
|
|
, lib
|
|
, intltool
|
|
, libxfce4ui
|
|
, xfce4-panel
|
|
, gettext
|
|
}:
|
|
|
|
mkXfceDerivation {
|
|
category = "panel-plugins";
|
|
pname = "xfce4-datetime-plugin";
|
|
version = "0.8.2";
|
|
|
|
rev-prefix = "xfce4-datetime-plugin-";
|
|
sha256 = "sha256-ov4Wh9Pj01u0NrjDn5p+qXlD2LY3gEUC1e/jPjkn4xQ=";
|
|
|
|
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 = with maintainers; [ ] ++ teams.xfce.members;
|
|
};
|
|
}
|