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
This commit is contained in:
Emmanuel Rosa 2019-12-18 17:48:38 +07:00
parent 7139b127b3
commit 727b097c78

View File

@ -1,5 +1,5 @@
{ stdenv, lib, fetchFromGitHub, rustPlatform, makeWrapper, ffmpeg { stdenv, lib, fetchFromGitHub, rustPlatform, makeWrapper, ffmpeg
, pandoc, poppler_utils, ripgrep, Security , pandoc, poppler_utils, ripgrep, Security, imagemagick, tesseract
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
@ -19,7 +19,7 @@ rustPlatform.buildRustPackage rec {
postInstall = '' postInstall = ''
wrapProgram $out/bin/rga \ 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; { meta = with stdenv.lib; {