nixpkgs-suyu/pkgs/tools/networking/minio-client/default.nix

27 lines
796 B
Nix
Raw Normal View History

{ stdenv, buildGoModule, fetchFromGitHub }:
2016-09-07 17:40:29 +02:00
2020-03-09 12:27:51 +01:00
buildGoModule rec {
pname = "minio-client";
version = "2020-04-25T00-43-23Z";
2016-09-07 17:40:29 +02:00
src = fetchFromGitHub {
owner = "minio";
repo = "mc";
rev = "RELEASE.${version}";
sha256 = "0ff2fyr3787zp0lpgbph064am33py2wzjikzmxd3zwp3y0dic770";
2016-09-07 17:40:29 +02:00
};
vendorSha256 = "0nfcxz47v5gl0wih59xarhz82nd8wy61c3ijvg2v08ipk29zivcc";
2020-03-09 12:27:51 +01:00
subPackages = [ "." ];
2016-09-07 17:40:29 +02:00
buildFlagsArray = [ "-ldflags=-s -w -X github.com/minio/mc/cmd.Version=${version}" ];
2016-09-07 17:40:29 +02:00
meta = with stdenv.lib; {
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";
maintainers = with maintainers; [ eelco bachp ];
platforms = platforms.unix;
license = licenses.asl20;
2016-09-07 17:40:29 +02:00
};
}