nixpkgs/pkgs/applications/office/osmo/default.nix

25 lines
754 B
Nix
Raw Normal View History

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 {
name = "osmo-${version}";
2018-01-07 15:42:05 +00:00
version = "0.4.2";
2015-06-16 18:12:22 +00:00
src = fetchurl {
url = "mirror://sourceforge/osmo-pim/${name}.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";
homepage = http://clayo.org/osmo/;
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ pSub ];
};
}