nixpkgs/pkgs/servers/minio/default.nix

40 lines
966 B
Nix
Raw Normal View History

2016-09-07 15:22:02 +00:00
{ lib, stdenv, fetchurl, go }:
stdenv.mkDerivation rec {
name = "minio-${shortVersion}";
2017-06-25 16:38:03 +00:00
shortVersion = "20170613";
longVersion = "2017-06-13T19-01-01Z";
2016-09-07 15:22:02 +00:00
src = fetchurl {
url = "https://github.com/minio/minio/archive/RELEASE.${lib.replaceStrings [":"] ["-"] longVersion}.tar.gz";
2017-06-25 16:38:03 +00:00
sha256 = "1rrlgn0nsvfn0lr9ffihjdb96n4znsvjlz1h7bwvz8nwhbn0lfsf";
2016-09-07 15:22:02 +00:00
};
buildInputs = [ go ];
unpackPhase = ''
d=$TMPDIR/src/github.com/minio/minio
mkdir -p $d
tar xf $src -C $d --strip-component 1
export GOPATH=$TMPDIR
cd $d
'';
buildPhase = ''
mkdir -p $out/bin
go build -o $out/bin/minio \
--ldflags "-X github.com/minio/minio/cmd.Version=${longVersion}"
'';
installPhase = "true";
meta = {
homepage = https://www.minio.io/;
description = "An S3-compatible object storage server";
maintainers = [ lib.maintainers.eelco ];
2016-12-05 18:48:33 +00:00
platforms = lib.platforms.x86_64;
2016-09-07 15:22:02 +00:00
license = lib.licenses.asl20;
};
}