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

31 lines
743 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2020-09-25 09:00:31 +00:00
buildGoModule rec {
pname = "turbo-geth";
2021-05-03 20:29:30 +00:00
version = "2021.04.05";
2020-09-25 09:00:31 +00:00
src = fetchFromGitHub {
owner = "ledgerwatch";
repo = pname;
rev = "v${version}";
2021-05-03 20:29:30 +00:00
sha256 = "sha256-RTPNJASNFyZ6tDJj0WOqALyxRsOLJzPy0qA1c2sSxys=";
2020-09-25 09:00:31 +00:00
};
2021-05-03 20:29:30 +00:00
vendorSha256 = "01c7lb6n00ws60dfybir0z5dbn6h68p5s4hbq0ga2g7drf3l3y0p";
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 ];
2020-09-25 09:00:31 +00:00
maintainers = with maintainers; [ xwvvvvwx ];
};
}