Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7f04462149e4
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c095429001ec
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Nov 11, 2020

  1. turbo-geth: init at 2020.11.01

    d-xo committed Nov 11, 2020
    Copy the full SHA
    d277dc6 View commit details
  2. Merge pull request #98726 from xwvvvvwx/turbo-geth

    turbo-geth: init at 2020.09.04
    mmahut authored Nov 11, 2020
    Copy the full SHA
    c095429 View commit details
Showing with 31 additions and 0 deletions.
  1. +29 −0 pkgs/applications/blockchains/turbo-geth.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
29 changes: 29 additions & 0 deletions pkgs/applications/blockchains/turbo-geth.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -24994,6 +24994,8 @@ in

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; };
vertcoind = callPackage ../applications/blockchains/vertcoin.nix { boost = boost165; withGui = false; };