summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorEmmanuel Rosa <emmanuelrosa@protonmail.com>2019-12-18 17:48:38 +0700
committerEmmanuel Rosa <emmanuelrosa@protonmail.com>2019-12-18 17:48:38 +0700
commit727b097c78934eae1f31dc5612df8f6246837d70 (patch)
tree0a018ccd9bda56044784e0e060b87f33ebb62755 /pkgs
parent7139b127b341142405e8e9b803b686bda5297144 (diff)
downloadnixpkgs-727b097c78934eae1f31dc5612df8f6246837d70.tar
nixpkgs-727b097c78934eae1f31dc5612df8f6246837d70.tar.gz
nixpkgs-727b097c78934eae1f31dc5612df8f6246837d70.tar.bz2
nixpkgs-727b097c78934eae1f31dc5612df8f6246837d70.tar.lz
nixpkgs-727b097c78934eae1f31dc5612df8f6246837d70.tar.xz
nixpkgs-727b097c78934eae1f31dc5612df8f6246837d70.tar.zst
nixpkgs-727b097c78934eae1f31dc5612df8f6246837d70.zip
ripgrep-all: add missing dependencies
This change adds additional dependencies so that the program's full
functionality is available by simply installing this package.

Closes #75735
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/text/ripgrep-all/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/text/ripgrep-all/default.nix b/pkgs/tools/text/ripgrep-all/default.nix
index 521b123d878..b17b6078c28 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,7 +19,7 @@ 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 ]}"
   '';
 
   meta = with stdenv.lib; {