mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-15 14:18:05 +00:00
parent
ed0f304e33
commit
97c8df0fbc
2195
pkgs/tools/text/ripgrep-all/Cargo.lock
generated
Normal file
2195
pkgs/tools/text/ripgrep-all/Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
@ -1,51 +1,42 @@
|
||||
{ stdenv, lib, fetchFromGitHub, rustPlatform, makeWrapper, ffmpeg
|
||||
, pandoc, poppler_utils, ripgrep, Security, imagemagick, tesseract3
|
||||
{ stdenv
|
||||
, lib
|
||||
, fetchFromGitHub
|
||||
, rustPlatform
|
||||
, makeWrapper
|
||||
, ffmpeg
|
||||
, pandoc
|
||||
, poppler_utils
|
||||
, ripgrep
|
||||
, Security
|
||||
, zip
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "ripgrep-all";
|
||||
version = "0.9.6";
|
||||
version = "1.0.0-alpha.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "phiresky";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1wjpgi7m3lxybllkr3r60zaphp02ykq2syq72q9ail2760cjcir6";
|
||||
sha256 = "sha256-fpDYzn4oAz6GJQef520+Vi2xI09xFjpWdAlFIAVzcoA=";
|
||||
};
|
||||
|
||||
cargoSha256 = "1l71xj5crfb51wfp2bdvdqp1l8kg182n5d6w23lq2wjszaqcj7cw";
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
cargoLock = {
|
||||
lockFile = ./Cargo.lock;
|
||||
outputHashes = {
|
||||
"tokio-tar-0.3.1" = "sha256-gp4UM6YV7P9k1FZxt3eVjyC4cK1zvpMjM5CPt2oVBEA=";
|
||||
};
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ makeWrapper poppler_utils ];
|
||||
buildInputs = lib.optional stdenv.isDarwin Security;
|
||||
|
||||
postInstall = ''
|
||||
wrapProgram $out/bin/rga \
|
||||
--prefix PATH ":" "${lib.makeBinPath [ ffmpeg pandoc poppler_utils ripgrep imagemagick tesseract3 ]}"
|
||||
--prefix PATH ":" "${lib.makeBinPath [ ffmpeg pandoc poppler_utils ripgrep zip ]}"
|
||||
'';
|
||||
|
||||
# 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 = ''
|
||||
|
Loading…
Reference in New Issue
Block a user