2018-11-11 13:20:41 -08:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig
|
2014-04-19 12:33:00 -07:00
|
|
|
, python
|
|
|
|
, intltool
|
|
|
|
, docbook2x, docbook_xml_dtd_412, libxslt
|
2015-08-15 19:16:05 -07:00
|
|
|
, sword, clucene_core, biblesync
|
2018-02-24 18:23:58 -08:00
|
|
|
, gnome-doc-utils
|
2014-04-19 12:33:00 -07:00
|
|
|
, libgsf, gconf
|
2017-09-04 05:25:55 -07:00
|
|
|
, gtkhtml, libglade, scrollkeeper
|
2014-04-19 12:33:00 -07:00
|
|
|
, webkitgtk
|
2018-02-24 18:23:58 -08:00
|
|
|
, dbus-glib, enchant, isocodes, libuuid, icu
|
2017-11-20 16:27:33 -08:00
|
|
|
, wrapGAppsHook
|
2018-11-11 13:20:41 -08:00
|
|
|
, wafHook
|
2014-09-27 13:27:51 -07:00
|
|
|
}:
|
2014-04-19 12:33:00 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "xiphos";
|
2017-11-20 16:27:33 -08:00
|
|
|
version = "4.0.7";
|
2014-04-19 12:33:00 -07:00
|
|
|
|
2017-09-04 05:25:55 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "crosswire";
|
|
|
|
repo = "xiphos";
|
2019-09-08 16:38:31 -07:00
|
|
|
rev = version;
|
2017-11-20 16:27:33 -08:00
|
|
|
sha256 = "1vwf1ps6nrajxl1qbs6v1cgykmq5wn4j09j10gbcd3b2nvrprf3g";
|
2014-04-19 12:33:00 -07:00
|
|
|
};
|
|
|
|
|
2018-11-11 13:20:41 -08:00
|
|
|
nativeBuildInputs = [ pkgconfig wrapGAppsHook wafHook ];
|
2017-09-05 14:26:13 -07:00
|
|
|
buildInputs = [ python intltool docbook2x docbook_xml_dtd_412 libxslt
|
2018-02-24 18:23:58 -08:00
|
|
|
sword clucene_core biblesync gnome-doc-utils libgsf gconf gtkhtml
|
|
|
|
libglade scrollkeeper webkitgtk dbus-glib enchant isocodes libuuid icu ];
|
2014-04-19 12:33:00 -07:00
|
|
|
|
|
|
|
prePatch = ''
|
|
|
|
patchShebangs .;
|
|
|
|
'';
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
export CLUCENE_HOME=${clucene_core};
|
|
|
|
export SWORD_HOME=${sword};
|
|
|
|
'';
|
2017-11-20 16:27:33 -08:00
|
|
|
|
2019-04-09 20:44:37 -07:00
|
|
|
wafConfigureFlags = [ "--enable-webkit2" ];
|
2014-04-19 12:33:00 -07:00
|
|
|
|
2014-09-10 11:59:54 -07:00
|
|
|
meta = with stdenv.lib; {
|
2014-04-19 12:33:00 -07:00
|
|
|
description = "A GTK Bible study tool";
|
|
|
|
longDescription = ''
|
2017-11-20 16:27:33 -08:00
|
|
|
Xiphos (formerly known as GnomeSword) is a Bible study tool
|
|
|
|
written for Linux, UNIX, and Windows using GTK, offering a rich
|
|
|
|
and featureful environment for reading, study, and research using
|
|
|
|
modules from The SWORD Project and elsewhere.
|
2014-04-19 12:33:00 -07:00
|
|
|
'';
|
|
|
|
homepage = http://www.xiphos.org/;
|
2014-09-10 11:59:54 -07:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = [ maintainers.AndersonTorres ];
|
|
|
|
platforms = platforms.linux;
|
2014-04-19 12:33:00 -07:00
|
|
|
};
|
|
|
|
}
|