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

25 lines
758 B
Nix
Raw Normal View History

2017-05-11 09:51:33 +02:00
{ stdenv, fetchurl, pkgconfig, gtk3, libxml2, gettext, libical, libnotify
2018-06-29 15:52:28 +02:00
, libarchive, gspell, webkitgtk, libgringotts, wrapGAppsHook }:
2015-06-16 20:12:22 +02:00
stdenv.mkDerivation rec {
pname = "osmo";
2020-07-17 22:15:44 +02:00
version = "0.4.4";
2015-06-16 20:12:22 +02:00
src = fetchurl {
url = "mirror://sourceforge/osmo-pim/${pname}-${version}.tar.gz";
2020-07-17 22:15:44 +02:00
sha256 = "19h3dnjgqbawnvgnycyp4n5b6mjsp5zghn3b69b6f3xa3fyi32qy";
2015-06-16 20:12:22 +02:00
};
2017-05-11 09:51:33 +02:00
nativeBuildInputs = [ pkgconfig gettext wrapGAppsHook ];
buildInputs = [ gtk3 libxml2 libical libnotify libarchive
2018-06-29 15:52:28 +02:00
gspell webkitgtk libgringotts ];
2015-06-16 20:12:22 +02:00
meta = with stdenv.lib; {
description = "A handy personal organizer";
homepage = "http://clayo.org/osmo/";
2015-06-16 20:12:22 +02:00
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ pSub ];
};
}