2020-03-27 07:33:21 +00:00
|
|
|
{ stdenv, buildGoModule, fetchFromGitHub }:
|
2016-09-07 16:40:29 +01:00
|
|
|
|
2020-03-09 11:27:51 +00:00
|
|
|
buildGoModule rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "minio-client";
|
2020-12-01 02:23:52 +00:00
|
|
|
version = "2020-11-25T23-04-07Z";
|
2016-09-07 16:40:29 +01:00
|
|
|
|
2018-02-13 20:49:30 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "minio";
|
|
|
|
repo = "mc";
|
|
|
|
rev = "RELEASE.${version}";
|
2020-12-01 02:23:52 +00:00
|
|
|
sha256 = "0r4za7jnwmh2wna5l4iv5pz6s5c62f7v4hmbv7misff9qbk4p4k7";
|
2016-09-07 16:40:29 +01:00
|
|
|
};
|
|
|
|
|
2020-12-01 02:23:52 +00:00
|
|
|
vendorSha256 = "0zracgqwhqs3gabrqqm8fm3hyicaadcinsjp5qgprjwd9a3c1zfv";
|
2020-03-09 11:27:51 +00:00
|
|
|
|
2020-08-04 01:26:27 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
2020-03-09 11:27:51 +00:00
|
|
|
subPackages = [ "." ];
|
2016-09-07 16:40:29 +01:00
|
|
|
|
2020-08-10 21:25:41 +01:00
|
|
|
patchPhase = ''
|
|
|
|
sed -i "s/Version.*/Version = \"${version}\"/g" cmd/build-constants.go
|
|
|
|
sed -i "s/ReleaseTag.*/ReleaseTag = \"RELEASE.${version}\"/g" cmd/build-constants.go
|
|
|
|
sed -i "s/CommitID.*/CommitID = \"${src.rev}\"/g" cmd/build-constants.go
|
|
|
|
'';
|
2016-09-07 16:40:29 +01:00
|
|
|
|
2018-02-13 20:49:30 +00:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-05 03:43:38 +01:00
|
|
|
homepage = "https://github.com/minio/mc";
|
2016-09-07 16:40:29 +01: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 16:40:29 +01:00
|
|
|
};
|
2020-07-31 04:58:04 +01:00
|
|
|
}
|