From 66516a0bf58891769286e0b07fd91e6ec9ea9647 Mon Sep 17 00:00:00 2001 From: Defelo Date: Thu, 22 May 2025 23:11:00 +0200 Subject: [PATCH] xh: add updateScript --- pkgs/by-name/xh/xh/package.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/by-name/xh/xh/package.nix b/pkgs/by-name/xh/xh/package.nix index 12d74d2272f4..69b4ee8cb381 100644 --- a/pkgs/by-name/xh/xh/package.nix +++ b/pkgs/by-name/xh/xh/package.nix @@ -8,6 +8,7 @@ stdenv, openssl, versionCheckHook, + nix-update-script, }: rustPlatform.buildRustPackage (finalAttrs: { @@ -63,6 +64,8 @@ rustPlatform.buildRustPackage (finalAttrs: { nativeInstallCheckInputs = [ versionCheckHook ]; versionCheckProgramArg = "--version"; + passthru.updateScript = nix-update-script { }; + meta = { description = "Friendly and fast tool for sending HTTP requests"; homepage = "https://github.com/ducaale/xh";