827d1bd618
Minio 32bit support seems to be fixed: https://github.com/minio/minio/pull/4921
29 lines
752 B
Nix
29 lines
752 B
Nix
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
name = "minio-client-${version}";
|
|
|
|
version = "2018-02-09T23-07-36Z";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "minio";
|
|
repo = "mc";
|
|
rev = "RELEASE.${version}";
|
|
sha256 = "1mzjqcvl8740jkkrsyycwqminnd0vdl1m2mvq8hnywj8hs816bfd";
|
|
};
|
|
|
|
goPackagePath = "github.com/minio/mc";
|
|
|
|
buildFlagsArray = [''-ldflags=
|
|
-X github.com/minio/mc/cmd.Version=${version}
|
|
''];
|
|
|
|
meta = with stdenv.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;
|
|
};
|
|
}
|