apko: 0.27.1 -> 0.27.2

R. Ryantm 249ef07c 76020e59

+3 -3
+3 -3
pkgs/development/tools/apko/default.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "apko"; 10 - version = "0.27.1"; 10 + version = "0.27.2"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "chainguard-dev"; 14 14 repo = pname; 15 15 tag = "v${version}"; 16 - hash = "sha256-p3Wu3kOCTcIOR/4N3dZNfBxpcqcu4rob9kA9vawZNbc="; 16 + hash = "sha256-OcEDXbAiBN8x0XilkkAfCxIb5PksPxZ00xlfmF829EY="; 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-9JhbKfoqySB4nsCI1dCpOed9CnQJWwUPkpL/DXGnV3E="; 28 + vendorHash = "sha256-dc2keDzWeyyNOAxYehTAGXacP+U0wD68PqzXij8sh2I="; 29 29 30 30 nativeBuildInputs = [ installShellFiles ]; 31 31