summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/blockchains
diff options
context:
space:
mode:
authorMarek Mahut <marek.mahut@gmail.com>2020-11-11 22:35:49 +0100
committerGitHub <noreply@github.com>2020-11-11 22:35:49 +0100
commitc095429001ec856b9ae9ac7a40875c7a93c84db8 (patch)
tree756cf0dd751ad4e9b757df965b1033c56b6ea036 /pkgs/applications/blockchains
parent7f04462149e4c767d5b910dca755bf1145756ad4 (diff)
parentd277dc65a1f36f9f63bcfd0e77f28568231eee37 (diff)
Merge pull request #98726 from xwvvvvwx/turbo-geth
turbo-geth: init at 2020.09.04
Diffstat (limited to 'pkgs/applications/blockchains')
-rw-r--r--pkgs/applications/blockchains/turbo-geth.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/applications/blockchains/turbo-geth.nix b/pkgs/applications/blockchains/turbo-geth.nix
new file mode 100644
index 000000000000..163d87ee8881
--- /dev/null
+++ b/pkgs/applications/blockchains/turbo-geth.nix
@@ -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 ];
+ };
+}