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

25 lines
759 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, gtk3, libxml2, gettext, libical, libnotify
2018-06-29 13:52:28 +00:00
, libarchive, gspell, webkitgtk, libgringotts, wrapGAppsHook }:
2015-06-16 18:12:22 +00:00
stdenv.mkDerivation rec {
pname = "osmo";
2020-07-17 20:15:44 +00:00
version = "0.4.4";
2015-06-16 18:12:22 +00:00
src = fetchurl {
url = "mirror://sourceforge/osmo-pim/${pname}-${version}.tar.gz";
2020-07-17 20:15:44 +00:00
sha256 = "19h3dnjgqbawnvgnycyp4n5b6mjsp5zghn3b69b6f3xa3fyi32qy";
2015-06-16 18:12:22 +00:00
};
nativeBuildInputs = [ pkg-config gettext wrapGAppsHook ];
2017-05-11 07:51:33 +00:00
buildInputs = [ gtk3 libxml2 libical libnotify libarchive
2018-06-29 13:52:28 +00:00
gspell webkitgtk libgringotts ];
2015-06-16 18:12:22 +00:00
meta = with lib; {
2015-06-16 18:12:22 +00:00
description = "A handy personal organizer";
homepage = "https://clayo.org/osmo/";
2015-06-16 18:12:22 +00:00
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ pSub ];
};
}