turbo-geth: init at 2020.11.01
This commit is contained in:
parent
d7e7fb7e7d
commit
d277dc65a1
2 changed files with 31 additions and 0 deletions
29
pkgs/applications/blockchains/turbo-geth.nix
Normal file
29
pkgs/applications/blockchains/turbo-geth.nix
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{ stdenv, buildGoModule, fetchFromGitHub }:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "turbo-geth";
|
||||||
|
version = "2020.11.01";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "ledgerwatch";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0hm8kqd0w231mlclsmsghf15r8pbrs5g064mkpx59qpqzk37lgss";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "0b7ldrnwkz3r1d4fw95hvvpi3bz56d9v8p2mjzdvlpk5zhl2a37p";
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -24986,6 +24986,8 @@ in
|
||||||
|
|
||||||
tessera = callPackage ../applications/blockchains/tessera.nix { };
|
tessera = callPackage ../applications/blockchains/tessera.nix { };
|
||||||
|
|
||||||
|
turbo-geth = callPackage ../applications/blockchains/turbo-geth.nix { };
|
||||||
|
|
||||||
vertcoin = libsForQt514.callPackage ../applications/blockchains/vertcoin.nix { boost = boost165; withGui = true; };
|
vertcoin = libsForQt514.callPackage ../applications/blockchains/vertcoin.nix { boost = boost165; withGui = true; };
|
||||||
vertcoind = callPackage ../applications/blockchains/vertcoin.nix { boost = boost165; withGui = false; };
|
vertcoind = callPackage ../applications/blockchains/vertcoin.nix { boost = boost165; withGui = false; };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue