summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2019-12-19 01:58:10 +0100
committerGitHub <noreply@github.com>2019-12-19 01:58:10 +0100
commitb7d46b9571615b48a8ae5b802871049918272517 (patch)
treee3537c6e345ee0d8e14c72f69b4447e07dd272fb /pkgs
parent4b51d1391ebbd936b89b2394fe8370f64904eca3 (diff)
parentc3c072ad17fa517afaed23fa29fb2f4f3b4f863c (diff)
downloadnixpkgs-b7d46b9571615b48a8ae5b802871049918272517.tar
nixpkgs-b7d46b9571615b48a8ae5b802871049918272517.tar.gz
nixpkgs-b7d46b9571615b48a8ae5b802871049918272517.tar.bz2
nixpkgs-b7d46b9571615b48a8ae5b802871049918272517.tar.lz
nixpkgs-b7d46b9571615b48a8ae5b802871049918272517.tar.xz
nixpkgs-b7d46b9571615b48a8ae5b802871049918272517.tar.zst
nixpkgs-b7d46b9571615b48a8ae5b802871049918272517.zip
Merge pull request #75874 from emmanuelrosa/ripgrep-all-deps
ripgrep-all: add missing dependencies
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/text/ripgrep-all/default.nix28
1 files changed, 26 insertions, 2 deletions
diff --git a/pkgs/tools/text/ripgrep-all/default.nix b/pkgs/tools/text/ripgrep-all/default.nix
index 521b123d878..d41be25231c 100644
--- a/pkgs/tools/text/ripgrep-all/default.nix
+++ b/pkgs/tools/text/ripgrep-all/default.nix
@@ -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 {
@@ -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 = ''