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

56 lines
1.5 KiB
Nix
Raw Normal View History

{ 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
, wafHook
2014-09-27 20:27:51 +00:00
}:
stdenv.mkDerivation rec {
pname = "xiphos";
2017-11-21 00:27:33 +00:00
version = "4.0.7";
2017-09-04 12:25:55 +00:00
src = fetchFromGitHub {
owner = "crosswire";
repo = "xiphos";
2019-09-08 23:38:31 +00:00
rev = version;
2017-11-21 00:27:33 +00:00
sha256 = "1vwf1ps6nrajxl1qbs6v1cgykmq5wn4j09j10gbcd3b2nvrprf3g";
};
nativeBuildInputs = [ pkgconfig wrapGAppsHook wafHook ];
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
wafConfigureFlags = [ "--enable-webkit2" ];
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;
};
}