mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
f7e390e6d4
Related: -9fc5e7e473
-593e11fd94
-508ae42a0f
Since the last time I ran this script, the Repology API changed, so I had to adapt the script used in the previous PR. The new API should be more robust, so overall this is a positive (no more grepping the error messages for our relevant data but just a nice json structure). Here's the new script I used: ```sh curl https://repology.org/api/v1/repository/nix_unstable/problems \ | jq -r '.[] | select(.type == "homepage_permanent_https_redirect") | .data | "s@\(.url)@\(.target)@"' \ | sort | uniq | tee script.sed find -name '*.nix' | xargs -P4 -- sed -f script.sed -i ``` I will also add this script to `maintainers/scripts`.
56 lines
1.5 KiB
Nix
56 lines
1.5 KiB
Nix
{ stdenv, fetchFromGitHub, pkgconfig
|
|
, 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
|
|
, wrapGAppsHook
|
|
, wafHook
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xiphos";
|
|
version = "4.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "crosswire";
|
|
repo = "xiphos";
|
|
rev = version;
|
|
sha256 = "14il9k4i58qbc78hcadw3gqy21sb9q661d75vlj6fwpczbzj7x1a";
|
|
};
|
|
|
|
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};
|
|
'';
|
|
|
|
wafConfigureFlags = [ "--enable-webkit2" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A GTK Bible study tool";
|
|
longDescription = ''
|
|
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 = "https://www.xiphos.org/";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = [ maintainers.AndersonTorres ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|