nixpkgs/pkgs/applications/blockchains/turbo-geth/default.nix

31 lines
739 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2020-09-25 09:00:31 +00:00
buildGoModule rec {
pname = "turbo-geth";
2021-05-14 11:06:05 +00:00
version = "2021.05.02";
2020-09-25 09:00:31 +00:00
src = fetchFromGitHub {
owner = "ledgerwatch";
repo = pname;
rev = "v${version}";
2021-05-14 11:06:05 +00:00
sha256 = "sha256-7sTRAAlKZOdwi/LRbIEDKWpBe1ol8pZfEf2KIC4s0xk=";
2020-09-25 09:00:31 +00:00
};
2021-05-14 11:06:05 +00:00
vendorSha256 = "1d0ahdb2b5v8nxq3kdxw151phnyv6habb8kr8qjaq3kyhcnyk6ng";
2020-09-25 09:00:31 +00:00
runVend = true;
subPackages = [
"cmd/tg"
2021-05-03 20:29:30 +00:00
"cmd/evm"
2020-09-25 09:00:31 +00:00
"cmd/rpcdaemon"
2021-05-03 20:29:30 +00:00
"cmd/rlpdump"
2020-09-25 09:00:31 +00:00
];
meta = with lib; {
2020-09-25 09:00:31 +00:00
homepage = "https://github.com/ledgerwatch/turbo-geth/";
description = "Ethereum node and geth fork focused on scalability and modularity";
2021-05-04 10:59:54 +00:00
license = with licenses; [ lgpl3Plus gpl3Plus ];
2021-08-08 17:11:45 +00:00
maintainers = with maintainers; [ d-xo ];
2020-09-25 09:00:31 +00:00
};
}