forked from mirrors/nixpkgs
s5cmd: init at 1.2.1
This commit is contained in:
parent
c0013a0218
commit
97571ffa9d
22
pkgs/tools/networking/s5cmd/default.nix
Normal file
22
pkgs/tools/networking/s5cmd/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "s5cmd";
|
||||
version = "1.2.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "peak";
|
||||
repo = "s5cmd";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-09vBYwnTfLIuu2SPP7DYB+U6sUkQffglIOHNn4+47qQ=";
|
||||
};
|
||||
|
||||
vendorSha256 = null;
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/peak/s5cmd";
|
||||
description = "Parallel S3 and local filesystem execution tool";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ tomberek ];
|
||||
};
|
||||
}
|
|
@ -7722,6 +7722,8 @@ in
|
|||
|
||||
s4cmd = callPackage ../tools/networking/s4cmd { };
|
||||
|
||||
s5cmd = callPackage ../tools/networking/s5cmd { };
|
||||
|
||||
s3gof3r = callPackage ../tools/networking/s3gof3r { };
|
||||
|
||||
s6-dns = skawarePackages.s6-dns;
|
||||
|
|
Loading…
Reference in a new issue