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