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 }: 2 3 buildGoModule rec { 4 pname = "azure-storage-azcopy"; ··· 7 src = fetchFromGitHub { 8 owner = "Azure"; 9 repo = "azure-storage-azcopy"; 10 - rev = "v${version}"; 11 - sha256 = "sha256-FdiDxWmCRkSOa+6A9XgKeyFGk/ba+BgFm3/ChERkYvk="; 12 }; 13 14 subPackages = [ "." ]; ··· 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"; ··· 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 = [ "." ]; ··· 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 }