2022-03-08 13:46:40 +00:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub }:
|
2016-06-03 15:20:43 +00:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "s3gof3r";
|
2022-03-08 13:46:40 +00:00
|
|
|
version = "0.5.0";
|
2020-07-31 04:07:43 +00:00
|
|
|
|
2016-06-03 15:20:43 +00:00
|
|
|
goPackagePath = "github.com/rlmcpherson/s3gof3r";
|
|
|
|
|
2022-03-08 13:46:40 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rlmcpherson";
|
|
|
|
repo = "s3gof3r";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "sha256-88C6c4DRD/4ePTO1+1YiI8ApXWE2uUlr07dDCxGzaoE=";
|
2016-06-03 15:20:43 +00:00
|
|
|
};
|
|
|
|
|
2016-09-10 10:04:13 +00:00
|
|
|
goDeps = ./deps.nix;
|
2022-03-08 13:46:40 +00:00
|
|
|
|
|
|
|
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; [ ];
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
2016-06-03 15:20:43 +00:00
|
|
|
}
|