summary refs log tree commit diff
path: root/pkgs/tools/networking/minio-client/default.nix
blob: b8cf93bc2d3f3b9459fd1ae51a5f2546c72d7e7b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ stdenv, buildGoModule, fetchFromGitHub, CoreServices }:

buildGoModule rec {
  pname = "minio-client";
  version = "2020-03-06T23-29-45Z";

  src = fetchFromGitHub {
    owner = "minio";
    repo = "mc";
    rev = "RELEASE.${version}";
    sha256 = "1vqvp7mn841s5g9vvas3c8j4y9lp90maw5y49hdv7zcsqncqvzkv";
  };

  modSha256 = "1qjfsqmcc6i0nixwvdmm3vnnv19yvqaaza096cpdf5rl35knsp5i";

  buildInputs = stdenv.lib.optionals stdenv.isDarwin [ CoreServices ];

  subPackages = [ "." ];

  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;
  };
}