2018-04-05 16:48:48 +02:00
|
|
|
{ stdenv, fetchFromGitHub, gtk3, pythonPackages, intltool, gnome3,
|
2019-04-05 11:28:06 +02:00
|
|
|
pango, gobject-introspection, wrapGAppsHook, gettext,
|
2017-10-07 20:37:09 +02:00
|
|
|
# Optional packages:
|
2018-10-07 18:37:59 +02:00
|
|
|
enableOSM ? true, osm-gps-map,
|
|
|
|
enableGraphviz ? true, graphviz,
|
|
|
|
enableGhostscript ? true, ghostscript
|
2017-10-07 20:37:09 +02:00
|
|
|
}:
|
2014-11-23 04:24:00 +01:00
|
|
|
|
2016-08-14 13:52:23 +02:00
|
|
|
let
|
|
|
|
inherit (pythonPackages) python buildPythonApplication;
|
|
|
|
in buildPythonApplication rec {
|
2018-12-26 03:24:16 +01:00
|
|
|
version = "5.0.1";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "gramps";
|
2014-11-23 04:24:00 +01:00
|
|
|
|
2019-04-05 11:28:06 +02:00
|
|
|
nativeBuildInputs = [ wrapGAppsHook gettext ];
|
2018-12-02 12:41:15 +01:00
|
|
|
buildInputs = [ intltool gtk3 gobject-introspection pango gnome3.gexiv2 ]
|
2017-10-07 20:37:09 +02:00
|
|
|
# Map support
|
|
|
|
++ stdenv.lib.optional enableOSM osm-gps-map
|
2018-10-07 18:37:59 +02:00
|
|
|
# Graphviz support
|
|
|
|
++ stdenv.lib.optional enableGraphviz graphviz
|
|
|
|
# Ghostscript support
|
|
|
|
++ stdenv.lib.optional enableGhostscript ghostscript
|
|
|
|
|
2017-10-07 20:37:09 +02:00
|
|
|
;
|
2014-11-23 04:24:00 +01:00
|
|
|
|
2017-10-07 20:37:09 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "gramps-project";
|
|
|
|
repo = "gramps";
|
|
|
|
rev = "v${version}";
|
2018-12-26 03:24:16 +01:00
|
|
|
sha256 = "1jz1fbjj6byndvir7qxzhd2ryirrd5h2kwndxpp53xdc05z1i8g7";
|
2014-11-23 04:24:00 +01:00
|
|
|
};
|
|
|
|
|
2018-04-05 16:48:48 +02:00
|
|
|
pythonPath = with pythonPackages; [ bsddb3 PyICU pygobject3 pycairo ];
|
2014-11-23 04:24:00 +01:00
|
|
|
|
2016-02-19 13:12:11 +01:00
|
|
|
# Same installPhase as in buildPythonApplication but without --old-and-unmanageble
|
2014-11-23 04:24:00 +01:00
|
|
|
# install flag.
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
|
|
|
|
mkdir -p "$out/lib/${python.libPrefix}/site-packages"
|
|
|
|
|
|
|
|
export PYTHONPATH="$out/lib/${python.libPrefix}/site-packages:$PYTHONPATH"
|
|
|
|
|
|
|
|
${python}/bin/${python.executable} setup.py install \
|
|
|
|
--install-lib=$out/lib/${python.libPrefix}/site-packages \
|
|
|
|
--prefix="$out"
|
|
|
|
|
|
|
|
eapth="$out/lib/${python.libPrefix}"/site-packages/easy-install.pth
|
|
|
|
if [ -e "$eapth" ]; then
|
|
|
|
# move colliding easy_install.pth to specifically named one
|
2019-08-15 14:41:18 +02:00
|
|
|
mv "$eapth" $(dirname "$eapth")/${pname}-${version}.pth
|
2014-11-23 04:24:00 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
rm -f "$out/lib/${python.libPrefix}"/site-packages/site.py*
|
|
|
|
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Genealogy software";
|
2018-05-01 05:03:23 +02:00
|
|
|
homepage = https://gramps-project.org;
|
2014-11-23 17:49:38 +01:00
|
|
|
license = licenses.gpl2;
|
2018-10-07 18:46:29 +02:00
|
|
|
maintainers = with maintainers; [ joncojonathan ];
|
2014-11-23 04:24:00 +01:00
|
|
|
};
|
|
|
|
}
|