Merge pull request #308546 from r-ryantm/auto-update/apko

apko: 0.13.2 -> 0.14.0

authored by Weijia Wang and committed by GitHub 4bf4f5cb dbc6b7aa

+3 -3
+3 -3
pkgs/development/tools/apko/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "apko"; 9 - version = "0.13.2"; 9 + version = "0.14.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "chainguard-dev"; 13 13 repo = pname; 14 14 rev = "v${version}"; 15 - hash = "sha256-PGRbJ7znsjvh/ATBF8k+pMnRO8wvGY0PAVswVmFaBUc="; 15 + hash = "sha256-e9xWLDs0txl+eiqim3gj7vJRGOFY6MrqOAa1l0TaTbs="; 16 16 # populate values that require us to use git. By doing this in postFetch we 17 17 # can delete .git afterwards and maintain better reproducibility of the src. 18 18 leaveDotGit = true; ··· 24 24 find "$out" -name .git -print0 | xargs -0 rm -rf 25 25 ''; 26 26 }; 27 - vendorHash = "sha256-aqxXCqhvCGQKI+4FDjbqPNeFvELZviQ7Inwxl65sowk="; 27 + vendorHash = "sha256-FeljCUtHTKni0yU7JwnaeKYJU7pM527drqBgaxWH/cI="; 28 28 29 29 nativeBuildInputs = [ installShellFiles ]; 30 30