summary refs log blame commit diff
path: root/pkgs/tools/networking/minio-client/default.nix
blob: 3a3ca03f18ae812310e8134e3bd05237a4e7d497 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                                            
 

                                   
 
                                   
 



                               
                                                                    

    
                                        
 


                                                 
 
                           

                                                                                                                
                                                    
                               
                             

    
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  name = "minio-client-${version}";

  version = "2019-01-30T19-57-22Z";

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

  goPackagePath = "github.com/minio/mc";

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