about summary refs log tree commit diff
path: root/pkgs/development/libraries/sword/default.nix
blob: a3684194c0f4924074160dc63f404cbbe2266aab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{stdenv, fetchurl, pkgconfig, icu, cluceneCore, curl}:

stdenv.mkDerivation rec {

  version = "1.6.2";

  name = "sword-${version}";

  src = fetchurl {
    url = "http://www.crosswire.org/ftpmirror/pub/sword/source/v1.6/${name}.tar.gz";
    sha256 = "1fc71avaxkhx6kckjiflw6j02lpg569b9bzaksq49i1m87awfxmg";
  };

  buildInputs = [ pkgconfig icu cluceneCore curl ];

  # because curl/types.h disappeared since at least curl 7.21.7
  patches = [ ./dont_include_curl_types_h.patch ];

  prePatch = ''
    patchShebangs .;
  '';

  configureFlags = "--without-conf --enable-debug";

  meta = {
    description = "A software framework that allows research manipulation of Biblical texts";
    homepage = http://www.crosswire.org/sword/;
    platforms = stdenv.lib.platforms.linux;
    license = "GPLv2";
    maintainers = [ stdenv.lib.maintainers.piotr ];
  };

}