2011-08-26 15:49:23 +02:00
|
|
|
{stdenv, fetchurl, cmake, sword, qt4, boost, cluceneCore}:
|
2010-11-03 21:42:26 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
2011-09-13 22:52:25 +02:00
|
|
|
version = "2.8.1";
|
2010-11-03 21:42:26 +01:00
|
|
|
|
|
|
|
name = "bibletime-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2011-08-26 15:49:23 +02:00
|
|
|
url = "mirror://sourceforge/bibletime/${name}.tar.bz2";
|
2011-09-13 22:52:25 +02:00
|
|
|
sha256 = "00xrgv4cx50ddbcfjiz3vl0cvsixwd0vj7avjvhrh617qqg8w325";
|
2010-11-03 21:42:26 +01:00
|
|
|
};
|
2011-09-13 22:52:25 +02:00
|
|
|
|
2010-11-03 21:42:26 +01:00
|
|
|
prePatch = ''
|
|
|
|
patchShebangs .;
|
|
|
|
'';
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
export CLUCENE_HOME=${cluceneCore};
|
|
|
|
export SWORD_HOME=${sword};
|
|
|
|
'';
|
|
|
|
|
2011-08-26 15:49:23 +02:00
|
|
|
buildInputs = [ cmake sword qt4 boost cluceneCore ];
|
2010-11-03 21:42:26 +01:00
|
|
|
|
|
|
|
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";
|
2011-09-13 22:52:25 +02:00
|
|
|
maintainers = [ stdenv.lib.maintainers.piotr ];
|
2010-11-03 21:42:26 +01:00
|
|
|
};
|
|
|
|
}
|