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

25 lines
774 B
Nix
Raw Normal View History

2017-05-11 09:51:33 +02:00
{ stdenv, fetchurl, pkgconfig, gtk3, libxml2, gettext, libical, libnotify
, libarchive, gtkspell3, webkitgtk, libgringotts, wrapGAppsHook }:
2015-06-16 20:12:22 +02:00
stdenv.mkDerivation rec {
name = "osmo-${version}";
2017-05-11 09:51:33 +02:00
version = "0.4.0-1";
2015-06-16 20:12:22 +02:00
src = fetchurl {
url = "mirror://sourceforge/osmo-pim/${name}.tar.gz";
2017-05-11 09:51:33 +02:00
sha256 = "fb454718e071c44bd360ce3e56cb29926cbf44a0d06ec738fa9b40fe3cbf8a33";
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
gtkspell3 webkitgtk libgringotts ];
2015-06-16 20:12:22 +02: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 ];
};
}