2020-11-23 18:54:41 +00:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl
|
|
|
|
, lib
|
|
|
|
, mkDerivation
|
|
|
|
, antiword
|
|
|
|
, bison
|
|
|
|
, catdoc
|
|
|
|
, chmlib
|
|
|
|
, djvulibre
|
|
|
|
, file
|
|
|
|
, gawk
|
|
|
|
, ghostscript
|
|
|
|
, gnugrep
|
|
|
|
, gnused
|
|
|
|
, gnutar
|
|
|
|
, groff
|
|
|
|
, gzip
|
|
|
|
, libiconv
|
|
|
|
, libwpd
|
|
|
|
, libxslt
|
|
|
|
, lyx
|
2023-02-13 03:31:11 +00:00
|
|
|
, makeWrapper
|
2020-11-23 18:54:41 +00:00
|
|
|
, perl
|
2023-02-13 03:31:11 +00:00
|
|
|
, perlPackages
|
2020-11-23 18:54:41 +00:00
|
|
|
, pkg-config
|
|
|
|
, poppler_utils
|
|
|
|
, python3Packages
|
|
|
|
, qtbase
|
|
|
|
, unrtf
|
|
|
|
, untex
|
|
|
|
, unzip
|
|
|
|
, which
|
|
|
|
, xapian
|
|
|
|
, zlib
|
|
|
|
, withGui ? true
|
2023-06-07 17:22:15 +00:00
|
|
|
, withPython ? with stdenv; buildPlatform.canExecute hostPlatform
|
2020-11-23 18:54:41 +00:00
|
|
|
}:
|
2013-04-01 22:42:41 +00:00
|
|
|
|
2023-06-07 19:45:25 +00:00
|
|
|
let filters = {
|
|
|
|
# "binary-name = package" where:
|
|
|
|
# - "${package}/bin/${binary-name}" is the full path to the binary
|
|
|
|
# - occurrences of `"${binary-name}"` in recoll's filters should be fixed up
|
|
|
|
awk = gawk;
|
|
|
|
antiword = antiword;
|
|
|
|
catppt = catdoc;
|
|
|
|
djvused = djvulibre;
|
|
|
|
djvutxt = djvulibre;
|
|
|
|
egrep = gnugrep;
|
|
|
|
groff = groff;
|
|
|
|
gunzip = gzip;
|
|
|
|
iconv = libiconv;
|
|
|
|
pdftotext = poppler_utils;
|
|
|
|
ps2ascii = ghostscript;
|
|
|
|
sed = gnused;
|
|
|
|
tar = gnutar;
|
|
|
|
unzip = unzip;
|
|
|
|
xls2csv = catdoc;
|
|
|
|
xsltproc = libxslt;
|
|
|
|
unrtf = unrtf;
|
|
|
|
untex = untex;
|
|
|
|
wpd2html = libwpd;
|
|
|
|
perl = perl.passthru.withPackages (p: [ p.ImageExifTool ]);
|
|
|
|
};
|
|
|
|
filterPath = lib.makeBinPath (map lib.getBin (builtins.attrValues filters));
|
|
|
|
in
|
|
|
|
|
2020-09-09 17:10:17 +00:00
|
|
|
mkDerivation rec {
|
2020-11-23 18:54:41 +00:00
|
|
|
pname = "recoll";
|
2023-01-01 02:40:55 +00:00
|
|
|
version = "1.33.4";
|
2013-04-01 22:42:41 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-11-23 18:54:41 +00:00
|
|
|
url = "https://www.lesbonscomptes.com/${pname}/${pname}-${version}.tar.gz";
|
2023-01-01 02:40:55 +00:00
|
|
|
sha256 = "sha256-ffD49sGYWYEWAFPRtpyDU/CYFvkrEDL21Ddq3QsXCvc=";
|
2013-04-01 22:42:41 +00:00
|
|
|
};
|
|
|
|
|
2023-01-04 08:12:48 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-recollq"
|
|
|
|
"--disable-webkit"
|
|
|
|
"--without-systemd"
|
2023-06-07 17:37:55 +00:00
|
|
|
|
|
|
|
# this leaks into the final `librecoll-*.so` binary, so we need
|
|
|
|
# to be sure it is taken from `pkgs.file` rather than `stdenv`,
|
|
|
|
# especially when cross-compiling
|
|
|
|
"--with-file-command=${file}/bin/file"
|
|
|
|
|
2023-06-07 17:22:15 +00:00
|
|
|
] ++ lib.optionals (!withPython) [
|
|
|
|
"--disable-python-module"
|
|
|
|
"--disable-python-chm"
|
2023-01-04 08:12:48 +00:00
|
|
|
] ++ lib.optionals (!withGui) [
|
|
|
|
"--disable-qtgui"
|
|
|
|
"--disable-x11mon"
|
|
|
|
] ++ (if stdenv.isLinux then [
|
|
|
|
"--with-inotify"
|
|
|
|
] else [
|
|
|
|
"--without-inotify"
|
|
|
|
]);
|
2013-04-02 05:59:22 +00:00
|
|
|
|
2023-02-19 19:23:32 +00:00
|
|
|
env.NIX_CFLAGS_COMPILE = toString [ "-DNIXPKGS" ];
|
2022-08-13 02:15:13 +00:00
|
|
|
|
|
|
|
patches = [
|
|
|
|
# fix "No/bad main configuration file" error
|
|
|
|
./fix-datadir.patch
|
|
|
|
];
|
|
|
|
|
2023-06-07 17:37:55 +00:00
|
|
|
nativeBuildInputs = lib.optionals withGui [
|
|
|
|
qtbase
|
|
|
|
] ++ [
|
2023-01-04 08:12:48 +00:00
|
|
|
pkg-config
|
2023-06-07 17:22:15 +00:00
|
|
|
] ++ lib.optionals withPython [
|
2023-01-04 08:12:48 +00:00
|
|
|
python3Packages.setuptools
|
2023-06-07 17:22:15 +00:00
|
|
|
] ++ [
|
2023-02-13 03:31:11 +00:00
|
|
|
makeWrapper
|
2023-01-04 08:12:48 +00:00
|
|
|
which
|
2021-04-05 08:38:14 +00:00
|
|
|
];
|
2018-02-26 07:06:50 +00:00
|
|
|
|
2021-04-05 08:38:14 +00:00
|
|
|
buildInputs = [
|
2023-01-04 08:12:48 +00:00
|
|
|
bison
|
|
|
|
chmlib
|
2023-06-07 17:22:15 +00:00
|
|
|
] ++ lib.optionals withPython [
|
2023-01-04 08:12:48 +00:00
|
|
|
python3Packages.python
|
2023-02-13 03:31:11 +00:00
|
|
|
python3Packages.mutagen
|
2023-06-07 17:22:15 +00:00
|
|
|
] ++ [
|
2023-01-04 08:12:48 +00:00
|
|
|
xapian
|
|
|
|
zlib
|
2023-06-07 17:37:55 +00:00
|
|
|
file
|
2023-03-10 22:55:17 +00:00
|
|
|
] ++ lib.optionals withGui [
|
2023-01-04 08:12:48 +00:00
|
|
|
qtbase
|
2023-03-10 22:55:17 +00:00
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
2023-01-04 08:12:48 +00:00
|
|
|
libiconv
|
|
|
|
];
|
2013-04-02 05:59:22 +00: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 17:10:17 +00:00
|
|
|
# the absolute path to the filtering command.
|
2013-04-02 05:59:22 +00:00
|
|
|
postInstall = ''
|
2020-11-23 18:54:41 +00: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 05:59:22 +00:00
|
|
|
for f in $out/share/recoll/filters/* ; do
|
2018-03-01 01:44:09 +00:00
|
|
|
if [[ ! "$f" =~ \.zip$ ]]; then
|
2023-06-07 19:45:25 +00:00
|
|
|
'' + lib.concatStrings (lib.mapAttrsToList (k: v: (''
|
|
|
|
substituteInPlace $f --replace '"${k}"' '"${lib.getBin v}/bin/${k}"'
|
|
|
|
'')) filters) + ''
|
2020-11-23 18:54:41 +00:00
|
|
|
substituteInPlace $f --replace '"pstotext"' '"${lib.getBin ghostscript}/bin/ps2ascii"'
|
2023-06-07 19:45:25 +00:00
|
|
|
substituteInPlace $f --replace /usr/bin/perl ${lib.getBin (perl.passthru.withPackages (p: [ p.ImageExifTool ]))}/bin/perl
|
2018-03-01 01:44:09 +00:00
|
|
|
fi
|
2013-04-02 05:59:22 +00:00
|
|
|
done
|
2023-06-07 19:46:13 +00:00
|
|
|
wrapProgram $out/bin/recoll --prefix PATH : "${filterPath}"
|
|
|
|
wrapProgram $out/bin/recollindex --prefix PATH : "${filterPath}"
|
2023-02-13 03:31:11 +00:00
|
|
|
wrapProgram $out/share/recoll/filters/rclaudio.py \
|
|
|
|
--prefix PYTHONPATH : $PYTHONPATH
|
|
|
|
wrapProgram $out/share/recoll/filters/rclimg \
|
|
|
|
--prefix PERL5LIB : "${with perlPackages; makeFullPerlPath [ ImageExifTool ]}"
|
2021-01-15 13:21:58 +00:00
|
|
|
'' + lib.optionalString stdenv.isLinux ''
|
2018-03-01 01:44:09 +00:00
|
|
|
substituteInPlace $f --replace '"lyx"' '"${lib.getBin lyx}/bin/lyx"'
|
2022-05-12 04:20:00 +00:00
|
|
|
'' + lib.optionalString (stdenv.isDarwin && withGui) ''
|
|
|
|
mkdir $out/Applications
|
|
|
|
mv $out/bin/recoll.app $out/Applications
|
2013-04-02 05:59:22 +00:00
|
|
|
'';
|
2013-04-01 22:42:41 +00:00
|
|
|
|
2015-12-18 11:51:10 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-06-30 21:04:07 +00:00
|
|
|
description = "A full-text search tool";
|
2013-04-01 22:42:41 +00:00
|
|
|
longDescription = ''
|
2013-04-02 05:59:22 +00:00
|
|
|
Recoll is an Xapian frontend that can search through files, archive
|
2020-09-09 17:10:17 +00:00
|
|
|
members, email attachments.
|
2013-04-02 05:59:22 +00:00
|
|
|
'';
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://www.lesbonscomptes.com/recoll/";
|
2023-01-04 08:12:48 +00:00
|
|
|
changelog = "https://www.lesbonscomptes.com/recoll/pages/release-${version}.html";
|
|
|
|
license = licenses.gpl2Plus;
|
2015-06-30 21:04:07 +00:00
|
|
|
platforms = platforms.unix;
|
2023-02-13 03:31:11 +00:00
|
|
|
maintainers = with maintainers; [ jcumming ehmry ];
|
2023-06-07 17:22:15 +00:00
|
|
|
|
|
|
|
# `Makefile.am` assumes the ability to run the hostPlatform's python binary at build time
|
|
|
|
broken = withPython && (with stdenv; !buildPlatform.canExecute hostPlatform);
|
2013-04-01 22:42:41 +00:00
|
|
|
};
|
|
|
|
}
|