1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/applications/office/osmo/default.nix

24 lines
703 B
Nix
Raw Normal View History

2015-06-16 19:12:22 +01:00
{ stdenv, fetchurl, pkgconfig, gtk, libxml2, gettext, libical, libnotify
, libarchive, gtkspell, webkitgtk2, libgringotts }:
stdenv.mkDerivation rec {
name = "osmo-${version}";
2015-08-21 07:44:39 +01:00
version = "0.2.14";
2015-06-16 19:12:22 +01:00
src = fetchurl {
url = "mirror://sourceforge/osmo-pim/${name}.tar.gz";
2015-08-21 07:44:39 +01:00
sha256 = "0vaayrmyiqn010gr11drmhkkg8fkxdmla3gwj9v3zvp5x44kab05";
2015-06-16 19:12:22 +01:00
};
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 ];
};
}