about summary refs log tree commit diff
path: root/pkgs/applications/office/osmo/default.nix
blob: 6da3bf6df83f449a0b3d6645206343363a69d34d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchurl, pkgconfig, gtk, libxml2, gettext, libical, libnotify
, libarchive, gtkspell, webkitgtk2, libgringotts }:

stdenv.mkDerivation rec {
  name = "osmo-${version}";
  version = "0.2.14";

  src = fetchurl {
    url = "mirror://sourceforge/osmo-pim/${name}.tar.gz";
    sha256 = "0vaayrmyiqn010gr11drmhkkg8fkxdmla3gwj9v3zvp5x44kab05";
  };

  buildInputs = [ pkgconfig gtk libxml2 gettext libical libnotify libarchive
    gtkspell webkitgtk2 libgringotts ];

  meta = with stdenv.lib; {
    description = "A handy personal organizer";
    homepage = http://clayo.org/osmo/;
    license = licenses.gpl2;
    platforms = platforms.linux;
    maintainers = with maintainers; [ pSub ];
  };
}