nixpkgs/pkgs/tools/networking/s5cmd/default.nix

23 lines
515 B
Nix
Raw Normal View History

2021-03-02 18:22:32 +01:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "s5cmd";
2021-10-29 01:43:49 +02:00
version = "1.4.0";
2021-03-02 18:22:32 +01:00
src = fetchFromGitHub {
owner = "peak";
repo = "s5cmd";
rev = "v${version}";
2021-10-29 01:43:49 +02:00
sha256 = "sha256-12bKMZ6SMPsqLqaBTVxCxvs7PZ0CKimI9wlqvWZ/bgY=";
2021-03-02 18:22:32 +01:00
};
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 ];
};
}