2014-04-19 19:33:00 +00:00
|
|
|
{stdenv, fetchurl, pkgconfig
|
|
|
|
, python
|
|
|
|
, intltool
|
|
|
|
, docbook2x, docbook_xml_dtd_412, libxslt
|
|
|
|
, sword, clucene_core
|
|
|
|
, gnome_doc_utils
|
|
|
|
, libgsf, gconf
|
|
|
|
, gtkhtml, libgtkhtml, libglade, scrollkeeper
|
|
|
|
, webkitgtk
|
2014-09-27 20:27:51 +00:00
|
|
|
, dbus_glib, enchant, isocodes, libuuid
|
|
|
|
}:
|
2014-04-19 19:33:00 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "xiphos-${version}";
|
2014-09-27 20:27:51 +00:00
|
|
|
version = "3.2.2";
|
2014-04-19 19:33:00 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://downloads.sourceforge.net/project/gnomesword/Xiphos/${version}/${name}.tar.gz";
|
2014-09-27 20:27:51 +00:00
|
|
|
sha256 = "1imd3v8knb5y3kddlfzp67p927zpfy0adjri89n7vcnipb9fy9i3";
|
2014-04-19 19:33:00 +00:00
|
|
|
};
|
|
|
|
|
2014-09-27 20:27:51 +00:00
|
|
|
buildInputs = [ pkgconfig python intltool docbook2x docbook_xml_dtd_412 libxslt
|
|
|
|
sword clucene_core gnome_doc_utils libgsf gconf gtkhtml libgtkhtml
|
|
|
|
libglade scrollkeeper webkitgtk dbus_glib enchant isocodes libuuid ];
|
2014-04-19 19:33:00 +00:00
|
|
|
|
|
|
|
prePatch = ''
|
|
|
|
patchShebangs .;
|
|
|
|
'';
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
export CLUCENE_HOME=${clucene_core};
|
|
|
|
export SWORD_HOME=${sword};
|
|
|
|
'';
|
|
|
|
|
|
|
|
configurePhase = ''
|
|
|
|
python waf configure --prefix=$out
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
python waf build
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
python waf install
|
|
|
|
'';
|
|
|
|
|
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 = ''
|
2014-09-10 18:59:54 +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
|
|
|
'';
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|