2019-04-06 12:15:39 +00:00
|
|
|
{ stdenv, fetchurl, python3Packages, gtk3, gobject-introspection, wrapGAppsHook }:
|
2014-08-14 05:00:00 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# 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 {
|
2014-08-14 05:00:00 +00:00
|
|
|
name = "zim-${version}";
|
2019-04-27 11:09:40 +00:00
|
|
|
version = "0.71.0";
|
2015-11-20 12:48:30 +00:00
|
|
|
|
2014-08-14 05:00:00 +00:00
|
|
|
src = fetchurl {
|
2014-11-26 10:19:36 +00:00
|
|
|
url = "http://zim-wiki.org/downloads/${name}.tar.gz";
|
2019-04-27 11:09:40 +00:00
|
|
|
sha256 = "0mr3911ls5zp3z776ysrdm3sg89zg29r3ip23msydcdbl8wymw30";
|
2014-08-14 05:00:00 +00:00
|
|
|
};
|
|
|
|
|
2019-04-06 12:15:39 +00:00
|
|
|
buildInputs = [ gtk3 gobject-introspection wrapGAppsHook ];
|
|
|
|
propagatedBuildInputs = with python3Packages; [ pyxdg pygobject3 ];
|
2014-09-04 21:53:54 +00:00
|
|
|
|
|
|
|
|
2015-11-20 12:48:30 +00:00
|
|
|
preFixup = ''
|
|
|
|
export makeWrapperArgs="--prefix XDG_DATA_DIRS : $out/share --argv0 $out/bin/.zim-wrapped"
|
2014-09-04 21:53:54 +00:00
|
|
|
'';
|
2016-03-13 20:43:42 +00:00
|
|
|
|
2017-01-01 20:58:27 +00:00
|
|
|
# RuntimeError: could not create GtkClipboard object
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
python test.py
|
2016-03-13 20:43:42 +00:00
|
|
|
'';
|
|
|
|
|
2014-08-14 05:00:00 +00:00
|
|
|
|
2017-06-18 10:19:16 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A desktop wiki";
|
|
|
|
homepage = http://zim-wiki.org;
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2018-12-22 13:10:09 +00:00
|
|
|
broken = stdenv.isDarwin; # https://github.com/NixOS/nixpkgs/pull/52658#issuecomment-449565790
|
2014-08-14 05:00:00 +00:00
|
|
|
};
|
|
|
|
}
|