Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

azure-storage-azcopy: update meta

authored by Fabian Affolter and committed by GitHub cef80bfe 2cc49140

+11 -5
+11 -5
pkgs/development/tools/azcopy/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, buildGoModule }: 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , buildGoModule 5 + }: 2 6 3 7 buildGoModule rec { 4 8 pname = "azure-storage-azcopy"; ··· 7 11 src = fetchFromGitHub { 8 12 owner = "Azure"; 9 13 repo = "azure-storage-azcopy"; 10 - rev = "v${version}"; 11 - sha256 = "sha256-FdiDxWmCRkSOa+6A9XgKeyFGk/ba+BgFm3/ChERkYvk="; 14 + rev = "refs/tags/v${version}"; 15 + hash = "sha256-FdiDxWmCRkSOa+6A9XgKeyFGk/ba+BgFm3/ChERkYvk="; 12 16 }; 13 17 14 18 subPackages = [ "." ]; ··· 22 26 ''; 23 27 24 28 meta = with lib; { 25 - maintainers = with maintainers; [ colemickens kashw2 ]; 26 - license = licenses.mit; 27 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 ]; 28 34 }; 29 35 }