Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / desktops / xfce / applications / orage / default.nix
blob130eb8464aeb26081482b9d38b708708b79c338c
1 { lib
2 , mkXfceDerivation
3 , gtk3
4 , libical
5 , libnotify
6 , libxfce4ui
7 , popt
8 , tzdata
9 }:
11 mkXfceDerivation {
12   category = "apps";
13   pname = "orage";
14   version = "4.18.0";
16   sha256 = "sha256-vL9zexPbQKPqIzK5UqUIxkE9I7hEupkDOJehMgj2Leo=";
18   buildInputs = [
19     gtk3
20     libical
21     libnotify
22     libxfce4ui
23     popt
24   ];
26   postPatch = ''
27     substituteInPlace src/parameters.c        --replace "/usr/share/zoneinfo" "${tzdata}/share/zoneinfo"
28     substituteInPlace src/tz_zoneinfo_read.c  --replace "/usr/share/zoneinfo" "${tzdata}/share/zoneinfo"
29   '';
31   meta = with lib; {
32     description = "Simple calendar application for Xfce";
33     mainProgram = "orage";
34     maintainers = with maintainers; [ ] ++ teams.xfce.members;
35   };