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

azure-storage-azcopy: 10.20.1 -> 10.21.1
This commit is contained in:
Fabian Affolter
2023-11-17 13:47:56 +01:00
committed by GitHub
+13 -7
View File
@@ -1,19 +1,23 @@
{ stdenv, lib, fetchFromGitHub, buildGoModule }:
{ lib
, stdenv
, fetchFromGitHub
, buildGoModule
}:
buildGoModule rec {
pname = "azure-storage-azcopy";
version = "10.20.1";
version = "10.21.1";
src = fetchFromGitHub {
owner = "Azure";
repo = "azure-storage-azcopy";
rev = "v${version}";
sha256 = "sha256-pfbSNFKZubgebx90zL5sVva36wXS+0NQvvMxPI8kV3Y=";
rev = "refs/tags/v${version}";
hash = "sha256-FdiDxWmCRkSOa+6A9XgKeyFGk/ba+BgFm3/ChERkYvk=";
};
subPackages = [ "." ];
vendorHash = "sha256-byFroeXRMepN9RYak2++tT9IE8ZbT+0qJAyipHkE5WE=";
vendorHash = "sha256-F5YMPwdS2A5FAwuG1gfiAqBKapZ24VIGzJXnwojoDk0=";
doCheck = false;
@@ -22,8 +26,10 @@ buildGoModule rec {
'';
meta = with lib; {
maintainers = with maintainers; [ colemickens kashw2 ];
license = licenses.mit;
description = "The new Azure Storage data transfer utility - AzCopy v10";
homepage = "https://github.com/Azure/azure-storage-azcopy";
changelog = "https://github.com/Azure/azure-storage-azcopy/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ colemickens kashw2 ];
};
}