about summary refs log tree commit diff
path: root/pkgs/tools/networking/s3gof3r/default.nix
blob: 2e3b838408796f32de53b336e09566fa0ac14b95 (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
24
25
{ lib, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  pname = "s3gof3r";
  version = "0.5.0";

  goPackagePath = "github.com/rlmcpherson/s3gof3r";

  src = fetchFromGitHub {
    owner = "rlmcpherson";
    repo = "s3gof3r";
    rev = "v${version}";
    sha256 = "sha256-88C6c4DRD/4ePTO1+1YiI8ApXWE2uUlr07dDCxGzaoE=";
  };

  goDeps = ./deps.nix;

  meta = with lib; {
    description = "Fast, concurrent, streaming access to Amazon S3, including gof3r, a CLI";
    homepage = "https://pkg.go.dev/github.com/rlmcpherson/s3gof3r";
    maintainers = with maintainers; [ ];
    mainProgram = "gof3r";
    license = licenses.mit;
  };
}