summary refs log tree commit diff
path: root/pkgs/applications/misc/bibletime/default.nix
blob: 4e04cdbbf38657fab079d50086b6f5cfad2bdf57 (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, cmake, sword, qt4, boost, clucene_core}:

stdenv.mkDerivation rec {

  version = "2.10.1";

  pname = "bibletime";

  src = fetchurl {
    url = "mirror://sourceforge/bibletime/${pname}-${version}.tar.xz";
    sha256 = "14fayy5h1ffjxin669q56fflxn4ij1irgn60cygwx2y02cwxbll6";
  };

  prePatch = ''
    patchShebangs .;
  '';

  preConfigure =  ''
    export CLUCENE_HOME=${clucene_core};
    export SWORD_HOME=${sword};
  '';

  buildInputs = [ cmake sword qt4 boost clucene_core ];

  cmakeFlags = [ "-DUSE_QT_WEBKIT=ON" "-DCMAKE_BUILD_TYPE=Debug" ];

  meta = {
    description = "A Qt4 Bible study tool";
    homepage = http://www.bibletime.info/;
    platforms = stdenv.lib.platforms.linux;
    license = stdenv.lib.licenses.gpl2;
    maintainers = [ stdenv.lib.maintainers.piotr ];
  };
}