azure-storage-azcopy: update meta

This commit is contained in:
Fabian Affolter 2023-11-17 11:04:25 +01:00 committed by GitHub
parent 2cc491405a
commit cef80bfeaf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,8 @@
{ stdenv, lib, fetchFromGitHub, buildGoModule }:
{ lib
, stdenv
, fetchFromGitHub
, buildGoModule
}:
buildGoModule rec {
pname = "azure-storage-azcopy";
@ -7,8 +11,8 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "Azure";
repo = "azure-storage-azcopy";
rev = "v${version}";
sha256 = "sha256-FdiDxWmCRkSOa+6A9XgKeyFGk/ba+BgFm3/ChERkYvk=";
rev = "refs/tags/v${version}";
hash = "sha256-FdiDxWmCRkSOa+6A9XgKeyFGk/ba+BgFm3/ChERkYvk=";
};
subPackages = [ "." ];
@ -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 ];
};
}