Merge pull request #268030 from r-ryantm/auto-update/azure-storage-azcopy

azure-storage-azcopy: 10.20.1 -> 10.21.1

authored by Fabian Affolter and committed by GitHub f50c8859 a5dff5b7

+13 -7
+13 -7
pkgs/development/tools/azcopy/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, buildGoModule }: 2 3 buildGoModule rec { 4 pname = "azure-storage-azcopy"; 5 - version = "10.20.1"; 6 7 src = fetchFromGitHub { 8 owner = "Azure"; 9 repo = "azure-storage-azcopy"; 10 - rev = "v${version}"; 11 - sha256 = "sha256-pfbSNFKZubgebx90zL5sVva36wXS+0NQvvMxPI8kV3Y="; 12 }; 13 14 subPackages = [ "." ]; 15 16 - vendorHash = "sha256-byFroeXRMepN9RYak2++tT9IE8ZbT+0qJAyipHkE5WE="; 17 18 doCheck = false; 19 ··· 22 ''; 23 24 meta = with lib; { 25 - maintainers = with maintainers; [ colemickens kashw2 ]; 26 license = licenses.mit; 27 - description = "The new Azure Storage data transfer utility - AzCopy v10"; 28 }; 29 }
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , buildGoModule 5 + }: 6 7 buildGoModule rec { 8 pname = "azure-storage-azcopy"; 9 + version = "10.21.1"; 10 11 src = fetchFromGitHub { 12 owner = "Azure"; 13 repo = "azure-storage-azcopy"; 14 + rev = "refs/tags/v${version}"; 15 + hash = "sha256-FdiDxWmCRkSOa+6A9XgKeyFGk/ba+BgFm3/ChERkYvk="; 16 }; 17 18 subPackages = [ "." ]; 19 20 + vendorHash = "sha256-F5YMPwdS2A5FAwuG1gfiAqBKapZ24VIGzJXnwojoDk0="; 21 22 doCheck = false; 23 ··· 26 ''; 27 28 meta = with lib; { 29 + description = "The new Azure Storage data transfer utility - AzCopy v10"; 30 + homepage = "https://github.com/Azure/azure-storage-azcopy"; 31 + changelog = "https://github.com/Azure/azure-storage-azcopy/releases/tag/v${version}"; 32 license = licenses.mit; 33 + maintainers = with maintainers; [ colemickens kashw2 ]; 34 }; 35 }