From 5840983fec06fa5a9526d6a8326425184156f313 Mon Sep 17 00:00:00 2001 From: emilylange Date: Mon, 14 Jul 2025 04:08:49 +0200 Subject: [PATCH] apko: fix version check not running due to typo Small typo that slipped through the review of 3c7c5d868bd56b90051368427fbfa84d56225e45 causing the hook to not actually run. --- pkgs/by-name/ap/apko/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/ap/apko/package.nix b/pkgs/by-name/ap/apko/package.nix index ada9a015e6c2..e64b039405aa 100644 --- a/pkgs/by-name/ap/apko/package.nix +++ b/pkgs/by-name/ap/apko/package.nix @@ -79,7 +79,7 @@ buildGoModule (finalAttrs: { --zsh <(${apko}/bin/apko completion zsh) ''; - nativeCheckInstallInputs = [ versionCheckHook ]; + nativeInstallCheckInputs = [ versionCheckHook ]; doInstallCheck = true; versionCheckProgramArg = "version";