2023-01-20 10:41:00 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub, nix-update-script }:
|
2021-08-11 14:56:57 +00:00
|
|
|
|
2022-12-17 10:02:37 +00:00
|
|
|
let
|
2021-08-11 14:56:57 +00:00
|
|
|
pname = "erigon";
|
2023-04-12 12:48:02 +00:00
|
|
|
version = "2.42.0";
|
2023-01-20 10:41:00 +00:00
|
|
|
in
|
|
|
|
buildGoModule {
|
|
|
|
inherit pname version;
|
2021-08-11 14:56:57 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ledgerwatch";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2023-04-12 12:48:02 +00:00
|
|
|
sha256 = "sha256-M2u8/WKo1yZu27KjTJhJFqycCxCopJqtVQpIs9inswI=";
|
2022-07-14 12:49:19 +00:00
|
|
|
fetchSubmodules = true;
|
2021-08-11 14:56:57 +00:00
|
|
|
};
|
|
|
|
|
2023-04-12 12:48:02 +00:00
|
|
|
vendorSha256 = "sha256-Vyurf4wSN4zSDjcH8FC+OOiviiSjRVF4RId/eqFDd+c=";
|
2022-01-07 04:07:37 +00:00
|
|
|
proxyVendor = true;
|
2021-08-11 14:56:57 +00:00
|
|
|
|
|
|
|
# Build errors in mdbx when format hardening is enabled:
|
|
|
|
# cc1: error: '-Wformat-security' ignored without '-Wformat' [-Werror=format-security]
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
|
|
|
subPackages = [
|
|
|
|
"cmd/erigon"
|
|
|
|
"cmd/evm"
|
|
|
|
"cmd/rpcdaemon"
|
|
|
|
"cmd/rlpdump"
|
|
|
|
];
|
|
|
|
|
2023-01-20 10:41:00 +00:00
|
|
|
passthru.updateScript = nix-update-script { };
|
2022-12-28 21:21:41 +00:00
|
|
|
|
2021-08-11 14:56:57 +00:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/ledgerwatch/erigon/";
|
|
|
|
description = "Ethereum node implementation focused on scalability and modularity";
|
|
|
|
license = with licenses; [ lgpl3Plus gpl3Plus ];
|
2022-09-22 12:36:57 +00:00
|
|
|
maintainers = with maintainers; [ d-xo happysalada ];
|
2021-08-11 14:56:57 +00:00
|
|
|
};
|
|
|
|
}
|