2020-11-23 19:54:41 +01:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl
|
|
|
|
, lib
|
|
|
|
, mkDerivation
|
|
|
|
, antiword
|
|
|
|
, bison
|
|
|
|
, catdoc
|
|
|
|
, chmlib
|
|
|
|
, djvulibre
|
|
|
|
, file
|
|
|
|
, gawk
|
|
|
|
, ghostscript
|
|
|
|
, gnugrep
|
|
|
|
, gnused
|
|
|
|
, gnutar
|
|
|
|
, groff
|
|
|
|
, gzip
|
|
|
|
, libiconv
|
|
|
|
, libwpd
|
|
|
|
, libxslt
|
|
|
|
, lyx
|
|
|
|
, perl
|
|
|
|
, pkg-config
|
|
|
|
, poppler_utils
|
|
|
|
, python3Packages
|
|
|
|
, qtbase
|
|
|
|
, unrtf
|
|
|
|
, untex
|
|
|
|
, unzip
|
|
|
|
, which
|
|
|
|
, xapian
|
|
|
|
, zlib
|
|
|
|
, withGui ? true
|
|
|
|
}:
|
2013-04-02 00:42:41 +02:00
|
|
|
|
2020-09-09 19:10:17 +02:00
|
|
|
mkDerivation rec {
|
2020-11-23 19:54:41 +01:00
|
|
|
pname = "recoll";
|
2021-03-09 12:12:25 +01:00
|
|
|
version = "1.28.6";
|
2013-04-02 00:42:41 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-11-23 19:54:41 +01:00
|
|
|
url = "https://www.lesbonscomptes.com/${pname}/${pname}-${version}.tar.gz";
|
2021-03-09 12:12:25 +01:00
|
|
|
sha256 = "sha256-fSblLddWTJKRzw4VAQp+p3xPe5grB2xITgN6vKr0xLc=";
|
2013-04-02 00:42:41 +02:00
|
|
|
};
|
|
|
|
|
2020-09-09 19:10:17 +02:00
|
|
|
configureFlags = [ "--enable-recollq" "--disable-webkit" ]
|
2018-06-10 21:29:53 +02:00
|
|
|
++ lib.optionals (!withGui) [ "--disable-qtgui" "--disable-x11mon" ]
|
|
|
|
++ (if stdenv.isLinux then [ "--with-inotify" ] else [ "--without-inotify" ]);
|
2013-04-02 07:59:22 +02:00
|
|
|
|
2021-04-05 10:38:14 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
file pkg-config python3Packages.setuptools which
|
|
|
|
];
|
2018-02-26 08:06:50 +01:00
|
|
|
|
2021-04-05 10:38:14 +02:00
|
|
|
buildInputs = [
|
|
|
|
bison chmlib python3Packages.python xapian zlib
|
2020-11-23 19:54:41 +01:00
|
|
|
] ++ lib.optional withGui qtbase
|
|
|
|
++ lib.optional stdenv.isDarwin libiconv;
|
2013-04-02 07:59:22 +02:00
|
|
|
|
|
|
|
# the filters search through ${PATH} using a sh proc 'checkcmds' for the
|
|
|
|
# filtering utils. Short circuit this by replacing the filtering command with
|
2020-09-09 19:10:17 +02:00
|
|
|
# the absolute path to the filtering command.
|
2013-04-02 07:59:22 +02:00
|
|
|
postInstall = ''
|
2020-11-23 19:54:41 +01:00
|
|
|
substituteInPlace $out/lib/*/site-packages/recoll/rclconfig.py --replace /usr/share/recoll $out/share/recoll
|
|
|
|
substituteInPlace $out/share/recoll/filters/rclconfig.py --replace /usr/share/recoll $out/share/recoll
|
2013-04-02 07:59:22 +02:00
|
|
|
for f in $out/share/recoll/filters/* ; do
|
2018-03-01 02:44:09 +01:00
|
|
|
if [[ ! "$f" =~ \.zip$ ]]; then
|
2020-11-23 19:54:41 +01:00
|
|
|
substituteInPlace $f --replace '"antiword"' '"${lib.getBin antiword}/bin/antiword"'
|
|
|
|
substituteInPlace $f --replace '"awk"' '"${lib.getBin gawk}/bin/awk"'
|
|
|
|
substituteInPlace $f --replace '"catppt"' '"${lib.getBin catdoc}/bin/catppt"'
|
|
|
|
substituteInPlace $f --replace '"djvused"' '"${lib.getBin djvulibre}/bin/djvused"'
|
|
|
|
substituteInPlace $f --replace '"djvutxt"' '"${lib.getBin djvulibre}/bin/djvutxt"'
|
|
|
|
substituteInPlace $f --replace '"egrep"' '"${lib.getBin gnugrep}/bin/egrep"'
|
|
|
|
substituteInPlace $f --replace '"groff"' '"${lib.getBin groff}/bin/groff"'
|
|
|
|
substituteInPlace $f --replace '"gunzip"' '"${lib.getBin gzip}/bin/gunzip"'
|
|
|
|
substituteInPlace $f --replace '"iconv"' '"${lib.getBin libiconv}/bin/iconv"'
|
|
|
|
substituteInPlace $f --replace '"pdftotext"' '"${lib.getBin poppler_utils}/bin/pdftotext"'
|
|
|
|
substituteInPlace $f --replace '"pstotext"' '"${lib.getBin ghostscript}/bin/ps2ascii"'
|
|
|
|
substituteInPlace $f --replace '"sed"' '"${lib.getBin gnused}/bin/sed"'
|
|
|
|
substituteInPlace $f --replace '"tar"' '"${lib.getBin gnutar}/bin/tar"'
|
|
|
|
substituteInPlace $f --replace '"unzip"' '"${lib.getBin unzip}/bin/unzip"'
|
|
|
|
substituteInPlace $f --replace '"xls2csv"' '"${lib.getBin catdoc}/bin/xls2csv"'
|
|
|
|
substituteInPlace $f --replace '"xsltproc"' '"${lib.getBin libxslt}/bin/xsltproc"'
|
|
|
|
substituteInPlace $f --replace '"unrtf"' '"${lib.getBin unrtf}/bin/unrtf"'
|
|
|
|
substituteInPlace $f --replace '"untex"' '"${lib.getBin untex}/bin/untex"'
|
|
|
|
substituteInPlace $f --replace '"wpd2html"' '"${lib.getBin libwpd}/bin/wpd2html"'
|
|
|
|
substituteInPlace $f --replace /usr/bin/perl ${lib.getBin perl}/bin/perl
|
2018-03-01 02:44:09 +01:00
|
|
|
fi
|
2013-04-02 07:59:22 +02:00
|
|
|
done
|
2021-01-15 14:21:58 +01:00
|
|
|
'' + lib.optionalString stdenv.isLinux ''
|
2018-03-01 02:44:09 +01:00
|
|
|
substituteInPlace $f --replace '"lyx"' '"${lib.getBin lyx}/bin/lyx"'
|
2013-04-02 07:59:22 +02:00
|
|
|
'';
|
2013-04-02 00:42:41 +02:00
|
|
|
|
2015-12-18 12:51:10 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2015-06-30 23:04:07 +02:00
|
|
|
description = "A full-text search tool";
|
2013-04-02 00:42:41 +02:00
|
|
|
longDescription = ''
|
2013-04-02 07:59:22 +02:00
|
|
|
Recoll is an Xapian frontend that can search through files, archive
|
2020-09-09 19:10:17 +02:00
|
|
|
members, email attachments.
|
2013-04-02 07:59:22 +02:00
|
|
|
'';
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://www.lesbonscomptes.com/recoll/";
|
2015-06-30 23:04:07 +02:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.unix;
|
2021-04-05 10:38:14 +02:00
|
|
|
maintainers = with maintainers; [ jcumming kiyengar ];
|
2013-04-02 00:42:41 +02:00
|
|
|
};
|
|
|
|
}
|