vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / pkgs / applications / office / osmo / default.nix
blobde1086f1f53d111c31f971479fded949df3dd1b2
1 { lib, stdenv, fetchurl, pkg-config, gtk3, libxml2, gettext, libical, libnotify
2 , libarchive, gspell, webkitgtk_4_0, libgringotts, wrapGAppsHook3 }:
4 stdenv.mkDerivation rec {
5   pname = "osmo";
6   version = "0.4.4";
8   src = fetchurl {
9     url = "mirror://sourceforge/osmo-pim/${pname}-${version}.tar.gz";
10     sha256 = "19h3dnjgqbawnvgnycyp4n5b6mjsp5zghn3b69b6f3xa3fyi32qy";
11   };
13   nativeBuildInputs = [ pkg-config gettext wrapGAppsHook3 ];
14   buildInputs = [ gtk3 libxml2 libical libnotify libarchive
15     gspell webkitgtk_4_0 libgringotts ];
17   meta = with lib; {
18     description = "Handy personal organizer";
19     mainProgram = "osmo";
20     homepage = "https://clayo.org/osmo/";
21     license = licenses.gpl2;
22     platforms = platforms.linux;
23     maintainers = with maintainers; [ pSub ];
24   };