recoll: qt4 -> qt5, fix build

gstqt5
Frank Doepper 2020-09-09 19:10:17 +02:00
parent f6a3e70c50
commit 9cdfa8adc2
2 changed files with 8 additions and 8 deletions

View File

@ -1,5 +1,5 @@
{ stdenv, fetchurl, lib, bison
, qt4, xapian, file, python, perl
{ mkDerivation, stdenv, fetchurl, lib, bison
, qtbase, xapian, file, python, perl
, djvulibre, groff, libxslt, unzip, poppler_utils, antiword, catdoc, lyx
, libwpd, unrtf, untex
, ghostscript, gawk, gnugrep, gnused, gnutar, gzip, libiconv, zlib
@ -7,7 +7,7 @@
assert stdenv.hostPlatform.system != "powerpc-linux";
stdenv.mkDerivation rec {
mkDerivation rec {
ver = "1.24.5";
name = "recoll-${ver}";
@ -16,12 +16,12 @@ stdenv.mkDerivation rec {
sha256 = "10m3a0ghnyipjcxapszlr8adyy2yaaxx4vgrkxrfmz13814z89cv";
};
configureFlags = [ "--enable-recollq" ]
configureFlags = [ "--enable-recollq" "--disable-webkit" ]
++ lib.optionals (!withGui) [ "--disable-qtgui" "--disable-x11mon" ]
++ (if stdenv.isLinux then [ "--with-inotify" ] else [ "--without-inotify" ]);
buildInputs = [ xapian file python bison zlib ]
++ lib.optional withGui qt4
++ lib.optional withGui qtbase
++ lib.optional stdenv.isDarwin libiconv;
patchPhase = stdenv.lib.optionalString stdenv.isDarwin ''

View File

@ -6588,7 +6588,7 @@ in
recutils = callPackage ../tools/misc/recutils { };
recoll = callPackage ../applications/search/recoll { };
recoll = libsForQt5.callPackage ../applications/search/recoll { };
redoc-cli = nodePackages.redoc-cli;