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

43 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, python3Packages, gtk3, gobject-introspection, wrapGAppsHook, gnome }:
#
# TODO: Declare configuration options for the following optional dependencies:
# - File stores: hg, git, bzr
# - Included plugins depenencies: dot, ditaa, dia, any other?
# - pyxdg: Need to make it work first (see setupPyInstallFlags).
#
2019-04-06 12:15:39 +00:00
python3Packages.buildPythonApplication rec {
name = "zim-${version}";
2020-07-07 23:32:18 +00:00
version = "0.73.1";
src = fetchurl {
url = "https://zim-wiki.org/downloads/${name}.tar.gz";
2020-07-07 23:32:18 +00:00
sha256 = "13vhwsgv6mscgixypc0ixkgj0y7cpcm7z7wn1vmdrwp7kn8m3xgx";
};
buildInputs = [ gtk3 gobject-introspection wrapGAppsHook gnome.adwaita-icon-theme ];
2019-04-06 12:15:39 +00:00
propagatedBuildInputs = with python3Packages; [ pyxdg pygobject3 ];
preFixup = ''
export makeWrapperArgs="--prefix XDG_DATA_DIRS : $out/share --argv0 $out/bin/.zim-wrapped"
'';
2016-03-13 20:43:42 +00:00
# RuntimeError: could not create GtkClipboard object
doCheck = false;
checkPhase = ''
python test.py
2016-03-13 20:43:42 +00:00
'';
meta = with lib; {
2017-06-18 10:19:16 +00:00
description = "A desktop wiki";
homepage = "http://zim-wiki.org";
2017-06-18 10:19:16 +00:00
license = licenses.gpl2Plus;
maintainers = with maintainers; [ pSub ];
broken = stdenv.isDarwin; # https://github.com/NixOS/nixpkgs/pull/52658#issuecomment-449565790
};
}