Merge pull request #219096 from marsam/update-yq

yq-go: 4.30.8 -> 4.31.2

authored by

figsoda and committed by
GitHub
70d296eb 294f3e5b

+4 -3
+4 -3
pkgs/development/tools/yq-go/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "yq-go"; 5 - version = "4.30.8"; 5 + version = "4.31.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "mikefarah"; 9 9 repo = "yq"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-x0vdPi8/Iciy+22SPBpktgkQCMxd5PT674OsWaLi+Q0="; 11 + hash = "sha256-Cf9Y7sdvpflQhhnOuRZUTyYQ3fpFTLo28dZtePsayfE="; 12 12 }; 13 13 14 - vendorHash = "sha256-VEVy8iVnUUpjTmCj7uIMcz0jaG9XGuxA3U02QfIwsYs="; 14 + vendorHash = "sha256-nv1sJ5GGB2IbGF1ebGZmeKF6qHLXgFebdibcsB36juY="; 15 15 16 16 nativeBuildInputs = [ installShellFiles ]; 17 17 ··· 32 32 meta = with lib; { 33 33 description = "Portable command-line YAML processor"; 34 34 homepage = "https://mikefarah.gitbook.io/yq/"; 35 + changelog = "https://github.com/mikefarah/yq/raw/v${version}/release_notes.txt"; 35 36 mainProgram = "yq"; 36 37 license = [ licenses.mit ]; 37 38 maintainers = with maintainers; [ lewo SuperSandro2000 ];