From f6d87aa81ec3c1296dab4fb0bdce8a589f54ca61 Mon Sep 17 00:00:00 2001 From: Michael Daniels Date: Mon, 3 Nov 2025 08:44:22 -0500 Subject: [PATCH] hyperfine: set updateScript --- pkgs/by-name/hy/hyperfine/package.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/by-name/hy/hyperfine/package.nix b/pkgs/by-name/hy/hyperfine/package.nix index 9fa0cddc0fb1..e6e9d487dc0c 100644 --- a/pkgs/by-name/hy/hyperfine/package.nix +++ b/pkgs/by-name/hy/hyperfine/package.nix @@ -3,6 +3,7 @@ rustPlatform, fetchFromGitHub, installShellFiles, + nix-update-script, }: rustPlatform.buildRustPackage rec { @@ -28,6 +29,8 @@ rustPlatform.buildRustPackage rec { --zsh $releaseDir/build/hyperfine-*/out/_hyperfine ''; + passthru.updateScript = nix-update-script { }; + meta = { description = "Command-line benchmarking tool"; homepage = "https://github.com/sharkdp/hyperfine";