From 5840983fec06fa5a9526d6a8326425184156f313 Mon Sep 17 00:00:00 2001 From: emilylange Date: Mon, 14 Jul 2025 04:08:49 +0200 Subject: [PATCH 1/2] 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"; From 7667f6ad9be83f0ee835fb6d07ca751bed033e94 Mon Sep 17 00:00:00 2001 From: emilylange Date: Mon, 14 Jul 2025 04:13:09 +0200 Subject: [PATCH 2/2] apko: 0.29.2 -> 0.29.3 https://github.com/chainguard-dev/apko/releases/tag/v0.29.3 diff: https://github.com/chainguard-dev/apko/compare/v0.29.2...v0.29.3 --- pkgs/by-name/ap/apko/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ap/apko/package.nix b/pkgs/by-name/ap/apko/package.nix index e64b039405aa..1ed8cfd79d64 100644 --- a/pkgs/by-name/ap/apko/package.nix +++ b/pkgs/by-name/ap/apko/package.nix @@ -11,13 +11,13 @@ buildGoModule (finalAttrs: { pname = "apko"; - version = "0.29.2"; + version = "0.29.3"; src = fetchFromGitHub { owner = "chainguard-dev"; repo = "apko"; tag = "v${finalAttrs.version}"; - hash = "sha256-szUOl5nKrra7Vvyfcd60/Oy/QFiXZpGJR2gtw3lriKE="; + hash = "sha256-3BmWxHhpdkJ7Zyd+K+YS/u4cIiwPsNGaYNvb6ZrIaeQ="; # populate values that require us to use git. By doing this in postFetch we # can delete .git afterwards and maintain better reproducibility of the src. leaveDotGit = true;