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
707 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, gtk2, libxml2, gettext, libical, libnotify
, libarchive, gtkspell2, webkitgtk2, libgringotts }:
2015-06-16 19:12:22 +01:00
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 gtk2 libxml2 gettext libical libnotify libarchive
gtkspell2 webkitgtk2 libgringotts ];
2015-06-16 19:12:22 +01: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 ];
};
}