1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-02 18:42:15 +00:00
nixpkgs/pkgs/servers/minio/default.nix

30 lines
734 B
Nix
Raw Normal View History

{ stdenv, buildGoModule, fetchFromGitHub }:
2016-09-07 16:22:02 +01:00
buildGoModule rec {
pname = "minio";
2020-03-09 11:27:22 +00:00
version = "2020-03-06T22-23-56Z";
2016-09-07 16:22:02 +01:00
src = fetchFromGitHub {
owner = "minio";
repo = "minio";
rev = "RELEASE.${version}";
2020-03-09 11:27:22 +00:00
sha256 = "0h5zsdxm2b2by6lzqaa7jj0z773kjr89cl13gq9ddabml34f0kxh";
2016-09-07 16:22:02 +01:00
};
2020-03-09 11:27:22 +00:00
modSha256 = "0ikid628v673f7lvp3psk05s3liqlyc3arppg33lfi2cmbaf8hmr";
2016-09-07 16:22:02 +01:00
2019-06-18 15:48:17 +01:00
subPackages = [ "." ];
buildFlagsArray = [''-ldflags=
-X github.com/minio/minio/cmd.Version=${version}
''];
2016-09-07 16:22:02 +01:00
meta = with stdenv.lib; {
2016-09-07 16:22:02 +01:00
homepage = https://www.minio.io/;
description = "An S3-compatible object storage server";
maintainers = with maintainers; [ eelco bachp ];
platforms = platforms.unix;
license = licenses.asl20;
2016-09-07 16:22:02 +01:00
};
}