summary refs log tree commit diff
path: root/pkgs/applications/misc/bibletime/default.nix
blob: eb909155e4e1b3691284af1fcd1f5cfb76125760 (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
35
36
{ lib, mkDerivation, fetchurl, cmake, pkg-config, sword, boost, clucene_core
, qtbase, qttools, qtsvg, qtwebkit
}:

mkDerivation rec {

  version = "2.11.2";

  pname = "bibletime";

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

  nativeBuildInputs = [ cmake pkg-config ];
  buildInputs = [
   sword boost clucene_core
   qtbase qttools qtsvg qtwebkit
 ];

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

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

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