bibletime: 2.10.1 -> 2.11.2

This commit is contained in:
Franz Pletz 2019-11-07 15:03:59 +01:00
parent ef4c3a352b
commit 8162d6c037
No known key found for this signature in database
GPG key ID: 846FDED7792617B4

View file

@ -1,28 +1,25 @@
{stdenv, fetchurl, cmake, sword, qt4, boost, clucene_core}: { stdenv, fetchurl, cmake, pkgconfig, sword, boost, clucene_core
, qtbase, qttools, qtsvg, qtwebkit
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "2.10.1"; version = "2.11.2";
pname = "bibletime"; pname = "bibletime";
src = fetchurl { src = fetchurl {
url = "mirror://sourceforge/bibletime/${pname}-${version}.tar.xz"; url = "mirror://sourceforge/bibletime/${pname}-${version}.tar.xz";
sha256 = "14fayy5h1ffjxin669q56fflxn4ij1irgn60cygwx2y02cwxbll6"; sha256 = "1s5bvmwbz1gyp3ml8sghpc00h8nhdvx2iyq96iri30kwx1y1jy6i";
}; };
prePatch = '' nativeBuildInputs = [ cmake pkgconfig ];
patchShebangs .; buildInputs = [
''; sword boost clucene_core
qtbase qttools qtsvg qtwebkit
];
preConfigure = '' cmakeFlags = [ "-DUSE_QT_WEBKIT=ON" ];
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 = { meta = {
description = "A Qt4 Bible study tool"; description = "A Qt4 Bible study tool";