about summary refs log tree commit diff
path: root/pkgs/applications/office/osmo/default.nix
blob: 3209ae0a9c9bfaaa10772ff1bed37c008a43487d (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, gtk2, libxml2, gettext, libical, libnotify
, libarchive, gtkspell2, 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 gtk2 libxml2 gettext libical libnotify libarchive
    gtkspell2 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 ];
  };
}