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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
694 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, buildGoModule }:
2018-09-19 06:14:33 +00:00
2019-11-18 08:18:00 +00:00
buildGoModule rec {
pname = "azure-storage-azcopy";
version = "10.14.1";
2018-09-19 06:14:33 +00:00
src = fetchFromGitHub {
owner = "Azure";
repo = "azure-storage-azcopy";
rev = "v${version}";
sha256 = "sha256-UPn6pBttes5wq1RByE89QfE2OSUixYW4LOnFgfuAY3w=";
2018-09-19 06:14:33 +00:00
};
2019-11-18 08:18:00 +00:00
subPackages = [ "." ];
vendorSha256 = "sha256-9ThsJySzsyS0eX/0BlAAvtaeJpPYCP0cN1YgIShYrKw=";
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"
'';
meta = with lib; {
2018-09-19 06:14:33 +00:00
maintainers = with maintainers; [ colemickens ];
license = licenses.mit;
description = "The new Azure Storage data transfer utility - AzCopy v10";
};
}