From 9c38f63b56b7b7fef13fadc353b121c641f6c1dd Mon Sep 17 00:00:00 2001 From: Angel J <78835633+Iamanaws@users.noreply.github.com> Date: Sat, 27 Dec 2025 14:32:21 -0800 Subject: [PATCH] repgrep: add iamanaws as maintainer Signed-off-by: Angel J <78835633+Iamanaws@users.noreply.github.com> --- pkgs/by-name/re/repgrep/package.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/re/repgrep/package.nix b/pkgs/by-name/re/repgrep/package.nix index 346de29472ef..d908c57823e9 100644 --- a/pkgs/by-name/re/repgrep/package.nix +++ b/pkgs/by-name/re/repgrep/package.nix @@ -9,14 +9,14 @@ ripgrep, }: -rustPlatform.buildRustPackage rec { +rustPlatform.buildRustPackage (finalAttrs: { pname = "repgrep"; version = "0.16.1"; src = fetchFromGitHub { owner = "acheronfail"; repo = "repgrep"; - rev = version; + tag = finalAttrs.version; hash = "sha256-hLRl8mKRaufneJNBQqPsH+48ZQGxFBNgulXcaK4/6s4="; }; @@ -47,13 +47,13 @@ rustPlatform.buildRustPackage rec { meta = { 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"; + changelog = "https://github.com/acheronfail/repgrep/blob/${finalAttrs.version}/CHANGELOG.md"; license = with lib.licenses; [ mit asl20 unlicense ]; - maintainers = [ ]; + maintainers = with lib.maintainers; [ iamanaws ]; mainProgram = "rgr"; }; -} +})