summary refs log blame commit diff
path: root/pkgs/applications/networking/seaweedfs/default.nix
blob: 23d2d498d6c0107bb7c6f57dd3c7d18fb749ace6 (plain) (tree)
1
2
3
4
5
6
7
8
9
10



                                        
                   




                         
                                                                   

    
                                                                       









                                                                       
{ lib, fetchFromGitHub, buildGoModule }:

buildGoModule rec {
  pname = "seaweedfs";
  version = "2.36";

  src = fetchFromGitHub {
    owner = "chrislusf";
    repo = "seaweedfs";
    rev = version;
    sha256 = "sha256-BVn+mV5SjyODcT+O8LXfGA42/Si5+GrdkjP0tAPiuTM=";
  };

  vendorSha256 = "sha256-qdgnoh+53o3idCfpkEFGK88aUVb2F6oHlSRZncs2hyY=";

  subPackages = [ "weed" ];

  meta = with lib; {
    description = "Simple and highly scalable distributed file system";
    homepage = "https://github.com/chrislusf/seaweedfs";
    maintainers = [ maintainers.raboof ];
    license = licenses.asl20;
  };
}