1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-29 00:54:11 +00:00
nixpkgs/pkgs/development/tools/azcopy/default.nix

28 lines
676 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";
version = "10.3.4";
2018-09-19 07:14:33 +01:00
src = fetchFromGitHub {
owner = "Azure";
repo = "azure-storage-azcopy";
rev = version;
sha256 = "16pdvcgy1d5dfqk3as23j45rkwfrv232n384cj5wfz9qwijkcy5g";
2018-09-19 07:14:33 +01:00
};
2019-11-18 08:18:00 +00:00
subPackages = [ "." ];
modSha256 = "07cy2zi7m2pkbfdcy659x4k5j2w60cmjy8kxv1dcii3dc6ls4bvb";
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";
};
}