sqlite_orm: 1.9 -> 1.9.1 (#379250)
[NixPkgs.git] / pkgs / by-name / os / osmo / package.nix
blobc5bcfc5e08ba4e9339a869b60d5cd96094fcebde
2   lib,
3   stdenv,
4   fetchurl,
5   pkg-config,
6   gtk3,
7   libxml2,
8   gettext,
9   libical,
10   libnotify,
11   libarchive,
12   gspell,
13   webkitgtk_4_0,
14   libgringotts,
15   wrapGAppsHook3,
18 stdenv.mkDerivation rec {
19   pname = "osmo";
20   version = "0.4.4";
22   src = fetchurl {
23     url = "mirror://sourceforge/osmo-pim/${pname}-${version}.tar.gz";
24     sha256 = "19h3dnjgqbawnvgnycyp4n5b6mjsp5zghn3b69b6f3xa3fyi32qy";
25   };
27   nativeBuildInputs = [
28     pkg-config
29     gettext
30     wrapGAppsHook3
31   ];
32   buildInputs = [
33     gtk3
34     libxml2
35     libical
36     libnotify
37     libarchive
38     gspell
39     webkitgtk_4_0
40     libgringotts
41   ];
43   meta = with lib; {
44     description = "Handy personal organizer";
45     mainProgram = "osmo";
46     homepage = "https://clayo.org/osmo/";
47     license = licenses.gpl2;
48     platforms = platforms.linux;
49     maintainers = with maintainers; [ pSub ];
50   };