summary refs log tree commit diff
path: root/pkgs/development/tools/azcopy/default.nix
blob: 403d0ab745a97747e23d0fe808663a8dd577e577 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchFromGitHub, buildGoPackage }:

buildGoPackage rec {
  pname = "azure-storage-azcopy";
  version = "10.0.1-pre";
  revision = "10.0.1";
  goPackagePath = "github.com/Azure/azure-storage-azcopy";

  goDeps= ./deps.nix;

  src = fetchFromGitHub {
    owner = "Azure";
    repo = "azure-storage-azcopy";
    rev = revision;
    sha256 = "0v1qli01nnx81186q1d2556w457qkbwypq6yy89ns52pqg941arp";
  };

  meta = with stdenv.lib; {
    maintainers = with maintainers; [ colemickens ];
    license = licenses.mit;
    description = "The new Azure Storage data transfer utility - AzCopy v10";
  };
}