Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
40 lines
747 B
Nix
40 lines
747 B
Nix
{
|
|
lib,
|
|
mkXfceDerivation,
|
|
glib,
|
|
gtk3,
|
|
libical,
|
|
libnotify,
|
|
libxfce4ui,
|
|
libxfce4util,
|
|
tzdata,
|
|
}:
|
|
|
|
mkXfceDerivation {
|
|
category = "apps";
|
|
pname = "orage";
|
|
version = "4.20.2";
|
|
|
|
sha256 = "sha256-iV4eVYmOXfEpq5cnHeCXRvx0Ms0Dis3EIwbcSakGLXs=";
|
|
|
|
buildInputs = [
|
|
glib
|
|
gtk3
|
|
libical
|
|
libnotify
|
|
libxfce4ui
|
|
libxfce4util
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/parameters.c --replace-fail "/usr/share/zoneinfo" "${tzdata}/share/zoneinfo"
|
|
substituteInPlace src/tz_zoneinfo_read.c --replace-fail "/usr/share/zoneinfo" "${tzdata}/share/zoneinfo"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Simple calendar application for Xfce";
|
|
mainProgram = "orage";
|
|
teams = [ teams.xfce ];
|
|
};
|
|
}
|