{ stdenv, buildGoModule, fetchFromGitHub }: buildGoModule rec { pname = "turbo-geth"; version = "2020.12.02"; src = fetchFromGitHub { owner = "ledgerwatch"; repo = pname; rev = "v${version}"; sha256 = "0ynnpvpd84qncvzmk4hmq8mn6m14a9p3zg4svijqwlsrr39amp3q"; }; vendorSha256 = "0sk064iyaxq9ig9xv3h1p1c4994hna9bky16g3hblbnh3v7mmqar"; runVend = true; subPackages = [ "cmd/tg" "cmd/restapi" "cmd/rpcdaemon" ]; meta = with stdenv.lib; { homepage = "https://github.com/ledgerwatch/turbo-geth/"; description = "Ethereum node and geth fork focused on scalability and modularity"; license = with licenses; [ lgpl3 gpl3 ]; maintainers = with maintainers; [ xwvvvvwx ]; }; }