fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, fetchurl, pkgconfig, icu, clucene_core, curl }:
2
3stdenv.mkDerivation rec {
4
5 name = "sword-${version}";
6 version = "1.7.4";
7
8 src = fetchurl {
9 url = "http://www.crosswire.org/ftpmirror/pub/sword/source/v1.7/${name}.tar.gz";
10 sha256 = "0g91kpfkwccvdikddffdbzd6glnp1gdvkx4vh04iyz10bb7shpcr";
11 };
12
13 nativeBuildInputs = [ pkgconfig ];
14 buildInputs = [ icu clucene_core curl ];
15
16 prePatch = ''
17 patchShebangs .;
18 '';
19
20 patches = [
21 (fetchurl {
22 url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/app-text/sword/files/sword-1.7.4-gcc6.patch";
23 sha256 = "0cvnya5swc7dxabir6bz6la2h1qxd32g3xi06m9b5l5ahb6g10y7";
24 })
25 ];
26
27 configureFlags = "--without-conf --enable-tests=no CXXFLAGS=-Wno-unused-but-set-variable";
28
29 meta = with stdenv.lib; {
30 description = "A software framework that allows research manipulation of Biblical texts";
31 homepage = http://www.crosswire.org/sword/;
32 platforms = platforms.linux;
33 license = licenses.gpl2;
34 maintainers = [ maintainers.piotr maintainers.AndersonTorres ];
35 };
36
37}