4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
63 lines
2.0 KiB
Nix
63 lines
2.0 KiB
Nix
{ stdenv, lib, fetchFromGitHub, rustPlatform, makeWrapper, ffmpeg_3
|
|
, pandoc, poppler_utils, ripgrep, Security, imagemagick, tesseract
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "ripgrep-all";
|
|
version = "0.9.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "phiresky";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1wjpgi7m3lxybllkr3r60zaphp02ykq2syq72q9ail2760cjcir6";
|
|
};
|
|
|
|
cargoSha256 = "0arwxqrpxdws4q1pnqzqkp1yv5aas08lkzh1vcgmf26j58sycniy";
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
buildInputs = lib.optional stdenv.isDarwin Security;
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/rga \
|
|
--prefix PATH ":" "${lib.makeBinPath [ ffmpeg_3 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 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 ma27 ];
|
|
};
|
|
}
|