nixpkgs/pkgs/tools/text/ripgrep-all/default.nix

40 lines
1.4 KiB
Nix
Raw Normal View History

2019-07-31 21:08:22 +00:00
{ stdenv, lib, fetchFromGitHub, rustPlatform, makeWrapper, ffmpeg
, pandoc, poppler_utils, ripgrep, Security, imagemagick, tesseract
2019-07-31 21:08:22 +00:00
}:
rustPlatform.buildRustPackage rec {
pname = "ripgrep-all";
2019-10-28 08:00:00 +00:00
version = "0.9.3";
2019-07-31 21:08:22 +00:00
src = fetchFromGitHub {
owner = "phiresky";
repo = pname;
rev = version;
2019-10-28 08:00:00 +00:00
sha256 = "0fxvnd8qflzvqz2181njdhpbr4wdvd1jc6lcw38c3pknk9h3ymq9";
2019-07-31 21:08:22 +00:00
};
2019-10-28 08:00:00 +00:00
cargoSha256 = "1jcwipsb7sl65ky78cypl4qvjvxvv4sjlwcg1pirgmqikcyiiy2l";
2019-07-31 21:08:22 +00:00
nativeBuildInputs = [ makeWrapper ];
buildInputs = lib.optional stdenv.isDarwin Security;
postInstall = ''
wrapProgram $out/bin/rga \
--prefix PATH ":" "${lib.makeBinPath [ ffmpeg pandoc poppler_utils ripgrep imagemagick tesseract ]}"
2019-07-31 21:08:22 +00:00
'';
meta = with stdenv.lib; {
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.
'';
homepage = https://github.com/phiresky/ripgrep-all;
license = with licenses; [ agpl3Plus ];
maintainers = with maintainers; [ zaninime ];
platforms = platforms.all;
};
}