summary refs log blame commit diff
path: root/pkgs/applications/blockchains/turbo-geth.nix
blob: b1548212a6948267124205993449a84412e4fdab (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                        


                       
                         




                          
                                                                   

    
                                                                        



                 
             
                   
                 

    
                    

                                                                                      
                                                    


                                                 
{ lib, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
  pname = "turbo-geth";
  version = "2021.05.02";

  src = fetchFromGitHub {
    owner = "ledgerwatch";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-7sTRAAlKZOdwi/LRbIEDKWpBe1ol8pZfEf2KIC4s0xk=";
  };

  vendorSha256 = "1d0ahdb2b5v8nxq3kdxw151phnyv6habb8kr8qjaq3kyhcnyk6ng";
  runVend = true;

  subPackages = [
    "cmd/tg"
    "cmd/evm"
    "cmd/rpcdaemon"
    "cmd/rlpdump"
  ];

  meta = with lib; {
    homepage = "https://github.com/ledgerwatch/turbo-geth/";
    description = "Ethereum node and geth fork focused on scalability and modularity";
    license = with licenses; [ lgpl3Plus gpl3Plus ];
    maintainers = with maintainers; [ xwvvvvwx ];
  };
}