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

47 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, python2Packages }:
#
# 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 08:33:32 +00:00
python2Packages.buildPythonApplication rec {
name = "zim-${version}";
version = "0.69";
src = fetchurl {
2014-11-26 10:19:36 +00:00
url = "http://zim-wiki.org/downloads/${name}.tar.gz";
sha256 = "1j04l1914iw87b0jd3r1czrh0q491fdgbqbi0biacxiri5q0i6a1";
};
2016-11-25 08:33:32 +00:00
propagatedBuildInputs = with python2Packages; [ pyGtkGlade pyxdg pygobject2 ];
preBuild = ''
2016-03-13 20:43:42 +00:00
export HOME=$TMP
sed -i '/zim_install_class,/d' setup.py
'';
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
'';
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 ];
};
}