2017-05-11 07:51:33 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gtk3, libxml2, gettext, libical, libnotify
|
2018-06-29 13:52:28 +00:00
|
|
|
, libarchive, gspell, webkitgtk, libgringotts, wrapGAppsHook }:
|
2015-06-16 18:12:22 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "osmo";
|
2018-01-07 15:42:05 +00:00
|
|
|
version = "0.4.2";
|
2015-06-16 18:12:22 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "mirror://sourceforge/osmo-pim/${pname}-${version}.tar.gz";
|
2018-01-07 15:42:05 +00:00
|
|
|
sha256 = "1gjd4w9jckfpqr9n0bw0w25h3qhfyzw1xvilh3hqdadfinwyal2v";
|
2015-06-16 18:12:22 +00:00
|
|
|
};
|
|
|
|
|
2017-05-11 07:51:33 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig gettext wrapGAppsHook ];
|
|
|
|
buildInputs = [ gtk3 libxml2 libical libnotify libarchive
|
2018-06-29 13:52:28 +00:00
|
|
|
gspell webkitgtk libgringotts ];
|
2015-06-16 18:12:22 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A handy personal organizer";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://clayo.org/osmo/";
|
2015-06-16 18:12:22 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
|
|
|
};
|
|
|
|
}
|