nixpkgs/pkgs/tools/text/repgrep/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
1.7 KiB
Nix
Raw Normal View History

{ lib
2023-12-28 22:59:18 +01:00
, stdenv
, rustPlatform
, fetchFromGitHub
, asciidoctor
, installShellFiles
, makeWrapper
, ripgrep
}:
rustPlatform.buildRustPackage rec {
pname = "repgrep";
2023-12-28 22:59:18 +01:00
version = "0.15.0";
src = fetchFromGitHub {
owner = "acheronfail";
repo = "repgrep";
rev = version;
2023-12-28 22:59:18 +01:00
hash = "sha256-6ba7EJUts0Ni9EA3ENlK+a2FaPo7JohtCyqwR9DdL1E=";
};
2023-12-28 22:59:18 +01:00
cargoHash = "sha256-XEjKTZ3qaiLWbm2wF+V97u9tGXDq/oTm249ubUE9n94=";
nativeBuildInputs = [
asciidoctor
installShellFiles
makeWrapper
];
postInstall = ''
wrapProgram $out/bin/rgr \
--prefix PATH : ${lib.makeBinPath [ ripgrep ]}
pushd "$(dirname "$(find -path '**/repgrep-stamp' | head -n 1)")"
installManPage rgr.1
popd
2023-12-28 22:59:18 +01:00
'' + lib.optionalString (stdenv.hostPlatform.canExecute stdenv.buildPlatform) ''
# As it can be seen here: https://github.com/acheronfail/repgrep/blob/0.15.0/.github/workflows/release.yml#L206, the completions are just the same as ripgrep
installShellCompletion --cmd rgr \
--bash <(${lib.getExe ripgrep} --generate complete-bash | sed 's/-c rg/-c rgr/') \
--zsh <(${lib.getExe ripgrep} --generate complete-zsh | sed 's/-c rg/-c rgr/') \
--fish <(${lib.getExe ripgrep} --generate complete-fish | sed 's/-c rg/-c rgr/')
'';
meta = with lib; {
description = "Interactive replacer for ripgrep that makes it easy to find and replace across files on the command line";
homepage = "https://github.com/acheronfail/repgrep";
changelog = "https://github.com/acheronfail/repgrep/blob/${src.rev}/CHANGELOG.md";
license = with licenses; [ mit asl20 unlicense ];
maintainers = with maintainers; [ figsoda ];
2023-07-02 20:58:30 +02:00
mainProgram = "rgr";
};
}