nixpkgs/pkgs/applications/misc/xiphos/default.nix

65 lines
1.6 KiB
Nix
Raw Normal View History

2017-09-04 12:25:55 +00:00
{stdenv, fetchFromGitHub, pkgconfig
, python
, intltool
, docbook2x, docbook_xml_dtd_412, libxslt
, sword, clucene_core, biblesync
, gnome-doc-utils
, libgsf, gconf
2017-09-04 12:25:55 +00:00
, gtkhtml, libglade, scrollkeeper
, webkitgtk
, dbus-glib, enchant, isocodes, libuuid, icu
2017-11-21 00:27:33 +00:00
, wrapGAppsHook
2014-09-27 20:27:51 +00:00
}:
stdenv.mkDerivation rec {
2017-11-21 00:27:33 +00:00
name = "xiphos-${version}";
version = "4.0.7";
2017-09-04 12:25:55 +00:00
src = fetchFromGitHub {
owner = "crosswire";
repo = "xiphos";
rev = "${version}";
2017-11-21 00:27:33 +00:00
sha256 = "1vwf1ps6nrajxl1qbs6v1cgykmq5wn4j09j10gbcd3b2nvrprf3g";
};
2017-11-21 00:27:33 +00:00
nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
buildInputs = [ python intltool docbook2x docbook_xml_dtd_412 libxslt
sword clucene_core biblesync gnome-doc-utils libgsf gconf gtkhtml
libglade scrollkeeper webkitgtk dbus-glib enchant isocodes libuuid icu ];
prePatch = ''
patchShebangs .;
'';
preConfigure = ''
export CLUCENE_HOME=${clucene_core};
export SWORD_HOME=${sword};
'';
2017-11-21 00:27:33 +00:00
configurePhase = ''
2017-09-04 12:25:55 +00:00
python waf configure --prefix=$out --enable-webkit2
'';
2017-11-21 00:27:33 +00:00
buildPhase = ''
python waf build
'';
installPhase = ''
python waf install
'';
meta = with stdenv.lib; {
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.
'';
homepage = http://www.xiphos.org/;
license = licenses.gpl2Plus;
maintainers = [ maintainers.AndersonTorres ];
platforms = platforms.linux;
};
}