2016-11-25 09:33:32 +01:00
|
|
|
{ stdenv, lib, fetchurl, python2Packages }:
|
2014-08-14 07:00:00 +02: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).
|
|
|
|
#
|
|
|
|
|
2016-11-25 09:33:32 +01:00
|
|
|
python2Packages.buildPythonApplication rec {
|
2014-08-14 07:00:00 +02:00
|
|
|
name = "zim-${version}";
|
2018-03-18 18:08:11 +01:00
|
|
|
version = "0.68";
|
2015-11-20 13:48:30 +01:00
|
|
|
|
2014-08-14 07:00:00 +02:00
|
|
|
src = fetchurl {
|
2014-11-26 11:19:36 +01:00
|
|
|
url = "http://zim-wiki.org/downloads/${name}.tar.gz";
|
2018-03-18 18:08:11 +01:00
|
|
|
sha256 = "05fzb24a2s3pm89zb6gwa48wb925an5i652klx8yk9pn23h1h5fr";
|
2014-08-14 07:00:00 +02:00
|
|
|
};
|
|
|
|
|
2016-11-25 09:33:32 +01:00
|
|
|
propagatedBuildInputs = with python2Packages; [ pyGtkGlade pyxdg pygobject2 ];
|
2014-08-14 07:00:00 +02:00
|
|
|
|
|
|
|
preBuild = ''
|
2016-03-13 21:43:42 +01:00
|
|
|
export HOME=$TMP
|
2014-08-14 07:00:00 +02:00
|
|
|
|
2015-11-20 13:48:30 +01:00
|
|
|
sed -i '/zim_install_class,/d' setup.py
|
2014-08-14 07:00:00 +02:00
|
|
|
'';
|
2014-09-04 23:53:54 +02:00
|
|
|
|
|
|
|
|
2015-11-20 13:48:30 +01:00
|
|
|
preFixup = ''
|
|
|
|
export makeWrapperArgs="--prefix XDG_DATA_DIRS : $out/share --argv0 $out/bin/.zim-wrapped"
|
2014-09-04 23:53:54 +02:00
|
|
|
'';
|
2016-03-13 21:43:42 +01:00
|
|
|
|
2017-01-01 21:58:27 +01:00
|
|
|
# RuntimeError: could not create GtkClipboard object
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
python test.py
|
2016-03-13 21:43:42 +01:00
|
|
|
'';
|
|
|
|
|
2014-08-14 07:00:00 +02:00
|
|
|
|
2017-06-18 12:19:16 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A desktop wiki";
|
|
|
|
homepage = http://zim-wiki.org;
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2014-08-14 07:00:00 +02:00
|
|
|
};
|
|
|
|
}
|