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

29 lines
752 B
Nix
Raw Normal View History

{ stdenv, buildGoPackage, fetchFromGitHub }:
2016-09-07 15:40:29 +00:00
buildGoPackage rec {
name = "minio-client-${version}";
2016-09-07 15:40:29 +00:00
version = "2019-01-30T19-57-22Z";
2016-09-07 15:40:29 +00:00
src = fetchFromGitHub {
owner = "minio";
repo = "mc";
rev = "RELEASE.${version}";
sha256 = "1w0ig0daf0zxpkz449xq2hm7ajhzn8hlnnmpac6ip82qy53xnbm4";
2016-09-07 15:40:29 +00:00
};
goPackagePath = "github.com/minio/mc";
2016-09-07 15:40:29 +00:00
buildFlagsArray = [''-ldflags=
-X github.com/minio/mc/cmd.Version=${version}
''];
2016-09-07 15:40:29 +00:00
meta = with stdenv.lib; {
2016-09-07 15:40:29 +00:00
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;
2016-09-07 15:40:29 +00:00
};
}