2018-11-11 21:20:41 +00:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig
|
2014-04-19 19:33:00 +00:00
|
|
|
, python
|
|
|
|
, intltool
|
|
|
|
, docbook2x, docbook_xml_dtd_412, libxslt
|
2015-08-16 02:16:05 +00:00
|
|
|
, sword, clucene_core, biblesync
|
2018-02-25 02:23:58 +00:00
|
|
|
, gnome-doc-utils
|
2014-04-19 19:33:00 +00:00
|
|
|
, libgsf, gconf
|
2017-09-04 12:25:55 +00:00
|
|
|
, gtkhtml, libglade, scrollkeeper
|
2014-04-19 19:33:00 +00:00
|
|
|
, webkitgtk
|
2018-02-25 02:23:58 +00:00
|
|
|
, dbus-glib, enchant, isocodes, libuuid, icu
|
2017-11-21 00:27:33 +00:00
|
|
|
, wrapGAppsHook
|
2018-11-11 21:20:41 +00:00
|
|
|
, wafHook
|
2014-09-27 20:27:51 +00:00
|
|
|
}:
|
2014-04-19 19:33:00 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "xiphos";
|
2020-05-04 11:07:58 +00:00
|
|
|
version = "4.1.0";
|
2014-04-19 19:33:00 +00:00
|
|
|
|
2017-09-04 12:25:55 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "crosswire";
|
|
|
|
repo = "xiphos";
|
2019-09-08 23:38:31 +00:00
|
|
|
rev = version;
|
2020-05-04 11:07:58 +00:00
|
|
|
sha256 = "14il9k4i58qbc78hcadw3gqy21sb9q661d75vlj6fwpczbzj7x1a";
|
2014-04-19 19:33:00 +00:00
|
|
|
};
|
|
|
|
|
2018-11-11 21:20:41 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig wrapGAppsHook wafHook ];
|
2017-09-05 21:26:13 +00:00
|
|
|
buildInputs = [ python intltool docbook2x docbook_xml_dtd_412 libxslt
|
2018-02-25 02:23:58 +00:00
|
|
|
sword clucene_core biblesync gnome-doc-utils libgsf gconf gtkhtml
|
|
|
|
libglade scrollkeeper webkitgtk dbus-glib enchant isocodes libuuid icu ];
|
2014-04-19 19:33:00 +00:00
|
|
|
|
|
|
|
prePatch = ''
|
|
|
|
patchShebangs .;
|
|
|
|
'';
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
export CLUCENE_HOME=${clucene_core};
|
|
|
|
export SWORD_HOME=${sword};
|
|
|
|
'';
|
2017-11-21 00:27:33 +00:00
|
|
|
|
2019-04-10 03:44:37 +00:00
|
|
|
wafConfigureFlags = [ "--enable-webkit2" ];
|
2014-04-19 19:33:00 +00:00
|
|
|
|
2014-09-10 18:59:54 +00:00
|
|
|
meta = with stdenv.lib; {
|
2014-04-19 19:33:00 +00:00
|
|
|
description = "A GTK Bible study tool";
|
|
|
|
longDescription = ''
|
2017-11-21 00:27:33 +00: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 19:33:00 +00:00
|
|
|
'';
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://www.xiphos.org/";
|
2014-09-10 18:59:54 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = [ maintainers.AndersonTorres ];
|
|
|
|
platforms = platforms.linux;
|
2014-04-19 19:33:00 +00:00
|
|
|
};
|
|
|
|
}
|