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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
1.3 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 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";
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=";
};
buildInputs = [ gtk3 gobject-introspection wrapGAppsHook gnome.adwaita-icon-theme ];
2019-04-06 13:15:39 +01: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 = ''
2021-08-06 08:20:07 +01:00
${python3Packages.python.interpreter} test.py
2016-03-13 20:43:42 +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 ];
broken = stdenv.isDarwin; # https://github.com/NixOS/nixpkgs/pull/52658#issuecomment-449565790
};
}