2021-05-07 22:18:14 +01:00
|
|
|
{ lib, stdenv, fetchurl, python3Packages, gtk3, gobject-introspection, wrapGAppsHook, gnome }:
|
2014-08-14 06:00:00 +01: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 13:15:39 +01:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2021-08-06 08:20:07 +01:00
|
|
|
pname = "zim";
|
2021-10-24 20:50:50 +01:00
|
|
|
version = "0.74.2";
|
2015-11-20 12:48:30 +00:00
|
|
|
|
2014-08-14 06:00:00 +01:00
|
|
|
src = fetchurl {
|
2021-08-06 08:20:07 +01:00
|
|
|
url = "https://zim-wiki.org/downloads/zim-${version}.tar.gz";
|
2021-10-24 20:50:50 +01:00
|
|
|
sha256 = "sha256-tZxBlpps2nLThSOq3WJ42iUQ4NG1Lb463bvDQ+djZJA=";
|
2014-08-14 06:00:00 +01:00
|
|
|
};
|
|
|
|
|
2021-05-07 22:18:14 +01:00
|
|
|
buildInputs = [ gtk3 gobject-introspection wrapGAppsHook gnome.adwaita-icon-theme ];
|
2019-04-06 13:15:39 +01:00
|
|
|
propagatedBuildInputs = with python3Packages; [ pyxdg pygobject3 ];
|
2014-09-04 22:53:54 +01: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 22:53:54 +01: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 = ''
|
2021-08-06 08:20:07 +01:00
|
|
|
${python3Packages.python.interpreter} test.py
|
2016-03-13 20:43:42 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-06-18 11:19:16 +01:00
|
|
|
description = "A desktop wiki";
|
2021-08-06 08:20:07 +01:00
|
|
|
homepage = "https://zim-wiki.org/";
|
2017-06-18 11:19:16 +01:00
|
|
|
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 06:00:00 +01:00
|
|
|
};
|
|
|
|
}
|