34 lines
982 B
Nix
34 lines
982 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "minio-client";
|
|
version = "2021-03-12T03-36-59Z";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "minio";
|
|
repo = "mc";
|
|
rev = "RELEASE.${version}";
|
|
sha256 = "sha256-aIJjr7KaT4E4Q1Ho4D0emduJWFxdCXCodq7J43r0DMQ=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-aoRdtv/Q7vjn0M7iSYAuyu/3pEH30x6D39xTHqQPvuo=";
|
|
|
|
doCheck = false;
|
|
|
|
subPackages = [ "." ];
|
|
|
|
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
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/minio/mc";
|
|
description = "A replacement for ls, cp, mkdir, diff and rsync commands for filesystems and object storage";
|
|
maintainers = with maintainers; [ eelco bachp ];
|
|
platforms = platforms.unix;
|
|
license = licenses.asl20;
|
|
};
|
|
}
|