1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-05 03:53:41 +00:00
nixpkgs/pkgs/development/tools/azcopy/default.nix

30 lines
705 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-08-22 02:03:28 +01:00
version = "10.6.0";
2018-09-19 07:14:33 +01:00
src = fetchFromGitHub {
owner = "Azure";
repo = "azure-storage-azcopy";
rev = "v${version}";
2020-08-22 02:03:28 +01:00
sha256 = "0izjnbldgf0597j4rh2ir9jsc2nzp9vwxcgllvkm5lh1xqf6i0nf";
2018-09-19 07:14:33 +01:00
};
2019-11-18 08:18:00 +00:00
subPackages = [ "." ];
2020-08-22 02:03:28 +01:00
vendorSha256 = "10sxkb2dh1il4ps15dlvq0xsry8hax27imb5qg3khdmjhb4yaj7k";
2019-11-18 08:18:00 +00:00
doCheck = false;
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";
};
}