36 lines
786 B
Nix
36 lines
786 B
Nix
|
{stdenv, fetchurl, cmake, sword, qt, boost, cluceneCore}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
|
||
|
version = "2.7.3";
|
||
|
|
||
|
name = "bibletime-${version}";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "mirror://sourceforge/project/bibletime/BibleTime%202/BibleTime%202%20source%20code/${name}.tar.bz2";
|
||
|
sha256 = "0171hlwg4rjv93b3gwcyv3nsj2kzwf4n8f6jw6ld18x7xmk9rkdg";
|
||
|
};
|
||
|
|
||
|
prePatch = ''
|
||
|
patchShebangs .;
|
||
|
'';
|
||
|
|
||
|
preConfigure = ''
|
||
|
export CLUCENE_HOME=${cluceneCore};
|
||
|
export SWORD_HOME=${sword};
|
||
|
'';
|
||
|
|
||
|
buildInputs = [ cmake sword qt boost cluceneCore ];
|
||
|
|
||
|
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 = "GPLv2";
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|