From d7896d5ebde38399e9822cd3f4cb170c8246e904 Mon Sep 17 00:00:00 2001 From: Michael Daniels Date: Mon, 3 Nov 2025 19:24:01 -0500 Subject: [PATCH] regex-cli: adopt, add updateScript --- pkgs/by-name/re/regex-cli/package.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/re/regex-cli/package.nix b/pkgs/by-name/re/regex-cli/package.nix index a9c7cb48e967..69f421f491a7 100644 --- a/pkgs/by-name/re/regex-cli/package.nix +++ b/pkgs/by-name/re/regex-cli/package.nix @@ -2,6 +2,7 @@ lib, rustPlatform, fetchCrate, + nix-update-script, }: rustPlatform.buildRustPackage rec { @@ -15,6 +16,8 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-7fPoH6I8Okz8Oby45MIDdKBkbPgUPsaXd6XS3r3cRO8="; + passthru.updateScript = nix-update-script { }; + meta = with lib; { description = "Command line tool for debugging, ad hoc benchmarking and generating regular expressions"; mainProgram = "regex-cli"; @@ -23,6 +26,6 @@ rustPlatform.buildRustPackage rec { asl20 mit ]; - maintainers = [ ]; + maintainers = with lib.maintainers; [ mdaniels5757 ]; }; }