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

27 lines
678 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, buildGoModule }:
2018-09-19 07:14:33 +01:00
2019-11-18 08:18:00 +00:00
buildGoModule rec {
pname = "azure-storage-azcopy";
2020-05-02 03:26:19 +01:00
version = "10.4.3";
2018-09-19 07:14:33 +01:00
src = fetchFromGitHub {
owner = "Azure";
repo = "azure-storage-azcopy";
rev = version;
2020-05-02 03:26:19 +01:00
sha256 = "0yl7iznjyng1i3d994qrryllni702gga7h45sx8i3sgpy8544yjf";
2018-09-19 07:14:33 +01:00
};
2019-11-18 08:18:00 +00:00
subPackages = [ "." ];
vendorSha256 = "1276k2hpyr7bqp6hdi576xcdcd2c8vz100jpls663z7vb2rbpvxf";
2019-11-18 08:18:00 +00:00
postInstall = ''
ln -rs "$out/bin/azure-storage-azcopy" "$out/bin/azcopy"
'';
2018-09-19 07:14:33 +01:00
meta = with stdenv.lib; {
maintainers = with maintainers; [ colemickens ];
license = licenses.mit;
description = "The new Azure Storage data transfer utility - AzCopy v10";
};
}