mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
40 lines
966 B
Nix
40 lines
966 B
Nix
{ lib, stdenv, fetchurl, go }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "minio-${shortVersion}";
|
|
|
|
shortVersion = "20170316";
|
|
longVersion = "2017-03-16T21-50-32Z";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/minio/minio/archive/RELEASE.${lib.replaceStrings [":"] ["-"] longVersion}.tar.gz";
|
|
sha256 = "1331lxsfr22x1sh7cyh9xz3aa70715wm1bk1f1r053kyz03q903c";
|
|
};
|
|
|
|
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 ];
|
|
platforms = lib.platforms.x86_64;
|
|
license = lib.licenses.asl20;
|
|
};
|
|
}
|