nixpkgs/pkgs/tools/networking/minio-client/default.nix
2019-09-01 10:14:04 +02:00

28 lines
753 B
Nix

{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "minio-client";
version = "2019-01-30T19-57-22Z";
src = fetchFromGitHub {
owner = "minio";
repo = "mc";
rev = "RELEASE.${version}";
sha256 = "1w0ig0daf0zxpkz449xq2hm7ajhzn8hlnnmpac6ip82qy53xnbm4";
};
goPackagePath = "github.com/minio/mc";
preBuild = ''
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;
};
}