Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
73 lines
1.6 KiB
Nix
73 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
makeWrapper,
|
|
ffmpeg,
|
|
pandoc,
|
|
poppler-utils,
|
|
ripgrep,
|
|
zip,
|
|
fzf,
|
|
}:
|
|
|
|
let
|
|
path = [
|
|
ffmpeg
|
|
pandoc
|
|
poppler-utils
|
|
ripgrep
|
|
zip
|
|
fzf
|
|
];
|
|
in
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "ripgrep-all";
|
|
version = "0.10.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "phiresky";
|
|
repo = "ripgrep-all";
|
|
rev = "v${version}";
|
|
hash = "sha256-r/+u76Qxat6U0Hb3Xh31K/F0dNSPzteFzoE69NNCerI=";
|
|
};
|
|
|
|
cargoHash = "sha256-nTCqqTFt87snzOXkjablaX9ZMGu/s88ZnUVr5uYrzPs=";
|
|
|
|
# override debug=true set in Cargo.toml upstream
|
|
RUSTFLAGS = "-C debuginfo=none";
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
poppler-utils
|
|
];
|
|
|
|
nativeCheckInputs = path;
|
|
|
|
postInstall = ''
|
|
for bin in $out/bin/*; do
|
|
wrapProgram $bin \
|
|
--prefix PATH ":" "${lib.makeBinPath path}"
|
|
done
|
|
'';
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/phiresky/ripgrep-all/blob/${src.rev}/CHANGELOG.md";
|
|
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
|
|
];
|
|
mainProgram = "rga";
|
|
};
|
|
}
|