nixpkgs/pkgs/development/tools/azcopy/default.nix

30 lines
694 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, buildGoModule }:
2018-09-19 08:14:33 +02:00
2019-11-18 09:18:00 +01:00
buildGoModule rec {
pname = "azure-storage-azcopy";
version = "10.10.0";
2018-09-19 08:14:33 +02:00
src = fetchFromGitHub {
owner = "Azure";
repo = "azure-storage-azcopy";
rev = "v${version}";
sha256 = "sha256-gWU219QlV+24RxnTHqQzQeGZHzVwmBXNKU+3QI6WvHI=";
2018-09-19 08:14:33 +02:00
};
2019-11-18 09:18:00 +01:00
subPackages = [ "." ];
vendorSha256 = "sha256-d965Rt8W74bsIZAZPZLe3twuUpp4wrnNc0qwjsKikOE=";
2019-11-18 09:18:00 +01:00
doCheck = false;
2019-11-18 09:18:00 +01:00
postInstall = ''
ln -rs "$out/bin/azure-storage-azcopy" "$out/bin/azcopy"
'';
meta = with lib; {
2018-09-19 08:14:33 +02:00
maintainers = with maintainers; [ colemickens ];
license = licenses.mit;
description = "The new Azure Storage data transfer utility - AzCopy v10";
};
}