diff --git a/pkgs/by-name/ap/apko/package.nix b/pkgs/by-name/ap/apko/package.nix index dea7ec686877..ada9a015e6c2 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.1"; + version = "0.29.2"; src = fetchFromGitHub { owner = "chainguard-dev"; repo = "apko"; tag = "v${finalAttrs.version}"; - hash = "sha256-PRT29c7WqjkWR4hqzzz8ek5IytsS3ntDlPQ/tzpARCk="; + hash = "sha256-szUOl5nKrra7Vvyfcd60/Oy/QFiXZpGJR2gtw3lriKE="; # 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; @@ -29,7 +29,7 @@ buildGoModule (finalAttrs: { find "$out" -name .git -print0 | xargs -0 rm -rf ''; }; - vendorHash = "sha256-j7f9cbcbX4PdaRxg5lare6aRz1B5lCfj2RSvs+XOfe4="; + vendorHash = "sha256-gN8lAmLJmoGQA0l62d4EPx2w2SbhUwbNYhIcyAamaqU="; nativeBuildInputs = [ installShellFiles ]; @@ -85,7 +85,7 @@ buildGoModule (finalAttrs: { meta = { homepage = "https://apko.dev/"; - changelog = "https://github.com/chainguard-dev/apko/blob/main/NEWS.md"; + changelog = "https://github.com/chainguard-dev/apko/releases/tag/v${finalAttrs.version}"; description = "Build OCI images using APK directly without Dockerfile"; mainProgram = "apko"; license = lib.licenses.asl20;