python312Packages.lion-pytorch: 0.2.2 -> 0.2.3 (#364581)
[NixPkgs.git] / pkgs / desktops / xfce / applications / orage / default.nix
blobd5ca6ec37c4c42b0a499af957c47debccc5d858a
2   lib,
3   mkXfceDerivation,
4   gtk3,
5   libical,
6   libnotify,
7   libxfce4ui,
8   popt,
9   tzdata,
12 mkXfceDerivation {
13   category = "apps";
14   pname = "orage";
15   version = "4.18.0";
17   sha256 = "sha256-vL9zexPbQKPqIzK5UqUIxkE9I7hEupkDOJehMgj2Leo=";
19   buildInputs = [
20     gtk3
21     libical
22     libnotify
23     libxfce4ui
24     popt
25   ];
27   postPatch = ''
28     substituteInPlace src/parameters.c        --replace "/usr/share/zoneinfo" "${tzdata}/share/zoneinfo"
29     substituteInPlace src/tz_zoneinfo_read.c  --replace "/usr/share/zoneinfo" "${tzdata}/share/zoneinfo"
30   '';
32   meta = with lib; {
33     description = "Simple calendar application for Xfce";
34     mainProgram = "orage";
35     maintainers = with maintainers; [ ] ++ teams.xfce.members;
36   };