Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ripgrep-all: add missing dependencies #75874

Merged
merged 2 commits into from
Dec 19, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
28 changes: 26 additions & 2 deletions pkgs/tools/text/ripgrep-all/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{ stdenv, lib, fetchFromGitHub, rustPlatform, makeWrapper, ffmpeg
, pandoc, poppler_utils, ripgrep, Security
, pandoc, poppler_utils, ripgrep, Security, imagemagick, tesseract
}:

rustPlatform.buildRustPackage rec {
Expand All @@ -19,9 +19,33 @@ rustPlatform.buildRustPackage rec {

postInstall = ''
wrapProgram $out/bin/rga \
--prefix PATH ":" "${lib.makeBinPath [ ffmpeg pandoc poppler_utils ripgrep ]}"
--prefix PATH ":" "${lib.makeBinPath [ ffmpeg pandoc poppler_utils ripgrep imagemagick tesseract ]}"
'';

# 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;

meta = with stdenv.lib; {
description = "Ripgrep, but also search in PDFs, E-Books, Office documents, zip, tar.gz, and more";
longDescription = ''
Expand Down