2015-12-18 14:09:28 +00:00
|
|
|
{ stdenv, fetchurl, bison
|
2015-10-08 11:02:35 +00:00
|
|
|
, qt4, xapian, file, python, perl
|
2015-10-08 10:29:31 +00:00
|
|
|
, djvulibre, groff, libxslt, unzip, poppler_utils, antiword, catdoc, lyx
|
2015-07-02 00:19:03 +00:00
|
|
|
, libwpd, unrtf, untex
|
2014-11-26 23:16:50 +00:00
|
|
|
, ghostscript, gawk, gnugrep, gnused, gnutar, gzip, libiconv }:
|
2013-04-01 22:42:41 +00:00
|
|
|
|
2013-04-05 10:59:16 +00:00
|
|
|
assert stdenv.system != "powerpc-linux";
|
|
|
|
|
2013-04-01 22:42:41 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-12-18 14:09:28 +00:00
|
|
|
ver = "1.21.3";
|
2013-04-01 22:42:41 +00:00
|
|
|
name = "recoll-${ver}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.lesbonscomptes.com/recoll/${name}.tar.gz";
|
2015-12-18 14:09:28 +00:00
|
|
|
sha256 = "66f039f08b149d5e4840664d4a636f6b55145b02072f87aab83282ebe0cd593a";
|
2013-04-01 22:42:41 +00:00
|
|
|
};
|
|
|
|
|
2015-12-18 14:09:28 +00:00
|
|
|
patches = [ ./nodeblayout.patch ./versionawk.patch ];
|
2015-12-18 13:51:58 +00:00
|
|
|
|
2013-04-02 05:59:22 +00:00
|
|
|
configureFlags = [ "--with-inotify" ];
|
|
|
|
|
2015-12-18 14:09:28 +00:00
|
|
|
buildInputs = [ qt4 xapian file python bison];
|
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
|
|
|
|
# the absolute path to the filtering command.
|
|
|
|
postInstall = ''
|
|
|
|
for f in $out/share/recoll/filters/* ; do
|
|
|
|
substituteInPlace $f --replace antiword ${antiword}/bin/antiword
|
|
|
|
substituteInPlace $f --replace awk ${gawk}/bin/awk
|
|
|
|
substituteInPlace $f --replace catppt ${catdoc}/bin/catppt
|
2015-10-28 18:36:40 +00:00
|
|
|
substituteInPlace $f --replace djvused ${djvulibre.bin}/bin/djvused
|
|
|
|
substituteInPlace $f --replace djvutxt ${djvulibre.bin}/bin/djvutxt
|
2015-12-18 14:09:28 +00:00
|
|
|
substituteInPlace $f --replace egrep ${gnugrep}/bin/egrep
|
2013-04-02 05:59:22 +00:00
|
|
|
substituteInPlace $f --replace groff ${groff}/bin/groff
|
|
|
|
substituteInPlace $f --replace gunzip ${gzip}/bin/gunzip
|
2016-03-11 15:53:20 +00:00
|
|
|
substituteInPlace $f --replace iconv ${libiconv.bin or libiconv}/bin/iconv
|
2013-04-02 05:59:22 +00:00
|
|
|
substituteInPlace $f --replace lyx ${lyx}/bin/lyx
|
2016-02-01 18:46:18 +00:00
|
|
|
substituteInPlace $f --replace pdftotext ${poppler_utils.out}/bin/pdftotext
|
2013-04-02 05:59:22 +00:00
|
|
|
substituteInPlace $f --replace pstotext ${ghostscript}/bin/ps2ascii
|
|
|
|
substituteInPlace $f --replace sed ${gnused}/bin/sed
|
|
|
|
substituteInPlace $f --replace tar ${gnutar}/bin/tar
|
|
|
|
substituteInPlace $f --replace unzip ${unzip}/bin/unzip
|
|
|
|
substituteInPlace $f --replace xls2csv ${catdoc}/bin/xls2csv
|
2015-10-05 11:23:01 +00:00
|
|
|
substituteInPlace $f --replace xsltproc ${libxslt.bin}/bin/xsltproc
|
2015-07-02 00:19:03 +00:00
|
|
|
substituteInPlace $f --replace unrtf ${unrtf}/bin/unrtf
|
|
|
|
substituteInPlace $f --replace untex ${untex}/bin/untex
|
|
|
|
substituteInPlace $f --replace wpd2html ${libwpd}/bin/wpd2html
|
2015-10-08 11:02:35 +00:00
|
|
|
substituteInPlace $f --replace /usr/bin/perl ${perl}/bin/perl
|
2013-04-02 05:59:22 +00:00
|
|
|
done
|
|
|
|
'';
|
2013-04-01 22:42:41 +00:00
|
|
|
|
2015-12-18 11:51:10 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-06-30 21:04:07 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
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
|
|
|
|
members, email attachments.
|
|
|
|
'';
|
2013-04-01 22:42:41 +00:00
|
|
|
homepage = http://www.lesbonscomptes.com/recoll/;
|
2015-06-30 21:04:07 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ jcumming ];
|
2013-04-01 22:42:41 +00:00
|
|
|
};
|
|
|
|
}
|