Merge pull request #222341 from aaronjheng/oras

oras: 0.16.0 -> 1.0.0

authored by Nick Cao and committed by GitHub 320f39c8 760d2f7d

+4 -4
+4 -4
pkgs/development/tools/oras/default.nix
··· 1 - { lib, stdenv, buildGoModule, fetchFromGitHub, installShellFiles, testers, oras }: 1 + { lib, buildGoModule, fetchFromGitHub, installShellFiles, testers, oras }: 2 2 3 3 buildGoModule rec { 4 4 pname = "oras"; 5 - version = "0.16.0"; 5 + version = "1.0.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "oras-project"; 9 9 repo = "oras"; 10 10 rev = "v${version}"; 11 - hash = "sha256-7fmrWkJ2f9LPaBB0vqLqPCCLpkdsS1gVfJ1xn6K/M3E="; 11 + hash = "sha256-NGkpmObFY3Z8sKBbgIwFAnIyVEFE0sRxgrX+3oXEVo0="; 12 12 }; 13 13 14 - vendorHash = "sha256-BLjGu1xk5OCNILc2es5Q0fEIqoexq/lHnJtHz72w6iI="; 14 + vendorHash = "sha256-l2UuYrkFdZYaqQUW57y0OZyu1gPO22C+AwNdIYymV9k="; 15 15 16 16 nativeBuildInputs = [ installShellFiles ]; 17 17