apko: 0.20.1 -> 0.21.0 (#364641)

authored by

Nick Cao and committed by
GitHub
146af801 1d9d7337

+3 -3
+3 -3
pkgs/development/tools/apko/default.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "apko"; 10 - version = "0.20.1"; 10 + version = "0.21.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "chainguard-dev"; 14 14 repo = pname; 15 15 rev = "v${version}"; 16 - hash = "sha256-V3wJzFrbgGqCtbK9YkrRiOZ1UeWN11QyJLFTo4R5LZY="; 16 + hash = "sha256-ppWEMQs14GnnZr1wxe6YBQ9DtsN/EPiUSgYFOBdFbQU="; 17 17 # populate values that require us to use git. By doing this in postFetch we 18 18 # can delete .git afterwards and maintain better reproducibility of the src. 19 19 leaveDotGit = true; ··· 25 25 find "$out" -name .git -print0 | xargs -0 rm -rf 26 26 ''; 27 27 }; 28 - vendorHash = "sha256-oHeWXlXbhGdx4ilEWqEU/EEtJK2uReru0khi4hFY5ys="; 28 + vendorHash = "sha256-8DsCLc1SovY8hupYc3AjOlp4JbeVeg1mbcVdLpvHUhI="; 29 29 30 30 nativeBuildInputs = [ installShellFiles ]; 31 31