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

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

31 lines
732 B
Nix
Raw Normal View History

{ stdenv, 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.15.0";
2018-09-19 06:14:33 +00:00
src = fetchFromGitHub {
owner = "Azure";
repo = "azure-storage-azcopy";
rev = "v${version}";
sha256 = "sha256-iXMkvrBANuOIyyVyQ11YQ1DWRQf4JAtu+1Ou3aQrhlc=";
2018-09-19 06:14:33 +00:00
};
2019-11-18 08:18:00 +00:00
subPackages = [ "." ];
vendorSha256 = "sha256-OlsNFhduilo8fJs/mynrAiwuXcfCZERdaJk3VcAUCJw=";
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; {
broken = stdenv.isDarwin;
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";
};
}