2020-03-27 07:33:21 +00:00
|
|
|
{ stdenv, buildGoModule, fetchFromGitHub }:
|
2016-09-07 15:40:29 +00:00
|
|
|
|
2020-03-09 11:27:51 +00:00
|
|
|
buildGoModule rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "minio-client";
|
2020-05-02 03:22:22 +00:00
|
|
|
version = "2020-04-25T00-43-23Z";
|
2016-09-07 15:40:29 +00:00
|
|
|
|
2018-02-13 20:49:30 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "minio";
|
|
|
|
repo = "mc";
|
|
|
|
rev = "RELEASE.${version}";
|
2020-05-02 03:22:22 +00:00
|
|
|
sha256 = "0ff2fyr3787zp0lpgbph064am33py2wzjikzmxd3zwp3y0dic770";
|
2016-09-07 15:40:29 +00:00
|
|
|
};
|
|
|
|
|
2020-05-02 03:22:22 +00:00
|
|
|
modSha256 = "1bcz7jchfnglypr2md9hhqbvcbghic2yp6njdrx3m5nqhylypzfx";
|
2020-03-09 11:27:51 +00:00
|
|
|
|
|
|
|
subPackages = [ "." ];
|
2016-09-07 15:40:29 +00:00
|
|
|
|
2020-05-02 03:22:22 +00:00
|
|
|
buildFlagsArray = [ "-ldflags=-s -w -X github.com/minio/mc/cmd.Version=${version}" ];
|
2016-09-07 15:40:29 +00:00
|
|
|
|
2018-02-13 20:49:30 +00:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-05 02:43:38 +00:00
|
|
|
homepage = "https://github.com/minio/mc";
|
2016-09-07 15:40:29 +00:00
|
|
|
description = "A replacement for ls, cp, mkdir, diff and rsync commands for filesystems and object storage";
|
2018-02-13 20:49:30 +00:00
|
|
|
maintainers = with maintainers; [ eelco bachp ];
|
2018-02-13 20:54:04 +00:00
|
|
|
platforms = platforms.unix;
|
2018-02-13 20:49:30 +00:00
|
|
|
license = licenses.asl20;
|
2016-09-07 15:40:29 +00:00
|
|
|
};
|
|
|
|
}
|