repgrep: init at 0.12.4

https://github.com/acheronfail/repgrep
This commit is contained in:
figsoda 2023-06-01 11:17:16 -04:00
parent b1d3057032
commit 88da0982d1
2 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,46 @@
{ lib
, rustPlatform
, fetchFromGitHub
, asciidoctor
, installShellFiles
, makeWrapper
, ripgrep
}:
rustPlatform.buildRustPackage rec {
pname = "repgrep";
version = "0.12.4";
src = fetchFromGitHub {
owner = "acheronfail";
repo = "repgrep";
rev = version;
hash = "sha256-tMv0MdFlDEYx8lNINfnhX6WgcpVLm1fTlaUddej5KRc=";
};
cargoHash = "sha256-NjPFoVPHjwG74ZNStYaNMzwdX488xDjGJu92+UWC2z8=";
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
installShellCompletion rgr.{bash,fish} _rgr
popd
'';
meta = with lib; {
description = "An 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 ];
};
}

View File

@ -11925,6 +11925,8 @@ with pkgs;
renderdoc = libsForQt5.callPackage ../development/tools/renderdoc { };
repgrep = callPackage ../tools/text/repgrep { };
replace = callPackage ../tools/text/replace { };
resvg = callPackage ../tools/graphics/resvg { };