2021-04-27 08:30:46 +01:00
|
|
|
{ stdenv, lib, fetchFromGitHub, rustPlatform, makeWrapper, ffmpeg
|
2019-12-18 10:48:38 +00:00
|
|
|
, pandoc, poppler_utils, ripgrep, Security, imagemagick, tesseract
|
2019-07-31 22:08:22 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "ripgrep-all";
|
2020-05-19 12:14:26 +01:00
|
|
|
version = "0.9.6";
|
2019-07-31 22:08:22 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "phiresky";
|
|
|
|
repo = pname;
|
2020-04-08 17:00:06 +01:00
|
|
|
rev = "v${version}";
|
2020-05-19 12:14:26 +01:00
|
|
|
sha256 = "1wjpgi7m3lxybllkr3r60zaphp02ykq2syq72q9ail2760cjcir6";
|
2019-07-31 22:08:22 +01:00
|
|
|
};
|
|
|
|
|
2021-05-07 12:00:49 +01:00
|
|
|
cargoSha256 = "1l71xj5crfb51wfp2bdvdqp1l8kg182n5d6w23lq2wjszaqcj7cw";
|
2019-07-31 22:08:22 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildInputs = lib.optional stdenv.isDarwin Security;
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/rga \
|
2021-04-27 08:30:46 +01:00
|
|
|
--prefix PATH ":" "${lib.makeBinPath [ ffmpeg pandoc poppler_utils ripgrep imagemagick tesseract ]}"
|
2019-07-31 22:08:22 +01:00
|
|
|
'';
|
|
|
|
|
2019-12-18 14:17:59 +00:00
|
|
|
# Use upstream's example data to run a couple of queries to ensure the dependencies
|
|
|
|
# for all of the adapters are available.
|
|
|
|
installCheckPhase = ''
|
|
|
|
set -e
|
|
|
|
export PATH="$PATH:$out/bin"
|
|
|
|
|
|
|
|
test1=$(rga --rga-no-cache "hello" exampledir/ | wc -l)
|
|
|
|
test2=$(rga --rga-no-cache --rga-adapters=tesseract "crate" exampledir/screenshot.png | wc -l)
|
|
|
|
|
|
|
|
if [ $test1 != 26 ]
|
|
|
|
then
|
|
|
|
echo "ERROR: test1 failed! Could not find the word 'hello' 26 times in the sample data."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ $test2 != 1 ]
|
|
|
|
then
|
|
|
|
echo "ERROR: test2 failed! Could not find the word 'crate' in the screenshot."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
'';
|
|
|
|
|
|
|
|
doInstallCheck = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-07-31 22:08:22 +01:00
|
|
|
description = "Ripgrep, but also search in PDFs, E-Books, Office documents, zip, tar.gz, and more";
|
|
|
|
longDescription = ''
|
|
|
|
Ripgrep, but also search in PDFs, E-Books, Office documents, zip, tar.gz, etc.
|
|
|
|
|
|
|
|
rga is a line-oriented search tool that allows you to look for a regex in
|
|
|
|
a multitude of file types. rga wraps the awesome ripgrep and enables it
|
|
|
|
to search in pdf, docx, sqlite, jpg, movie subtitles (mkv, mp4), etc.
|
|
|
|
'';
|
2020-04-08 17:00:06 +01:00
|
|
|
homepage = "https://github.com/phiresky/ripgrep-all";
|
2019-07-31 22:08:22 +01:00
|
|
|
license = with licenses; [ agpl3Plus ];
|
2019-12-26 14:13:48 +00:00
|
|
|
maintainers = with maintainers; [ zaninime ma27 ];
|
2021-04-27 17:49:10 +01:00
|
|
|
mainProgram = "rga";
|
2019-07-31 22:08:22 +01:00
|
|
|
};
|
|
|
|
}
|