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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
515 B
Nix
Raw Normal View History

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