mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-26 23:03:41 +00:00
45e991cfb5
https://gitlab.xfce.org/apps/orage/-/compare/orage-4.16.0...orage-4.18.0 The panel plugin has been removed.
36 lines
702 B
Nix
36 lines
702 B
Nix
{ lib
|
|
, mkXfceDerivation
|
|
, gtk3
|
|
, libical
|
|
, libnotify
|
|
, libxfce4ui
|
|
, popt
|
|
, tzdata
|
|
}:
|
|
|
|
mkXfceDerivation {
|
|
category = "apps";
|
|
pname = "orage";
|
|
version = "4.18.0";
|
|
|
|
sha256 = "sha256-vL9zexPbQKPqIzK5UqUIxkE9I7hEupkDOJehMgj2Leo=";
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
libical
|
|
libnotify
|
|
libxfce4ui
|
|
popt
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/parameters.c --replace "/usr/share/zoneinfo" "${tzdata}/share/zoneinfo"
|
|
substituteInPlace src/tz_zoneinfo_read.c --replace "/usr/share/zoneinfo" "${tzdata}/share/zoneinfo"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Simple calendar application for Xfce";
|
|
maintainers = with maintainers; [ ] ++ teams.xfce.members;
|
|
};
|
|
}
|