11e91c61ef
Critical security fix that fixes an issue that allows bypassing authentication. See: https://blog.minio.io/minio-release-jan-18-2018-security-advisory-4c64ca87721b
29 lines
718 B
Nix
29 lines
718 B
Nix
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
name = "minio-${version}";
|
|
|
|
version = "2018-01-18T20-33-21Z";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "minio";
|
|
repo = "minio";
|
|
rev = "RELEASE.${version}";
|
|
sha256 = "102rilh1kjf9y6g6y83ikk42w7g1sbld11md3wm54hynyh956xrs";
|
|
};
|
|
|
|
goPackagePath = "github.com/minio/minio";
|
|
|
|
buildFlagsArray = [''-ldflags=
|
|
-X github.com/minio/minio/cmd.Version=${version}
|
|
''];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://www.minio.io/;
|
|
description = "An S3-compatible object storage server";
|
|
maintainers = with maintainers; [ eelco bachp ];
|
|
platforms = platforms.x86_64 ++ ["aarch64-linux"];
|
|
license = licenses.asl20;
|
|
};
|
|
}
|