nixpkgs/pkgs/applications/blockchains/erigon.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
953 B
Nix
Raw Normal View History

2021-08-24 10:22:39 +02:00
{ lib, buildGoModule, fetchFromGitHub }:
2020-09-25 11:00:31 +02:00
buildGoModule rec {
2021-06-08 15:41:43 +02:00
pname = "erigon";
2022-07-08 11:26:57 +02:00
version = "2022.07.02";
2020-09-25 11:00:31 +02:00
src = fetchFromGitHub {
owner = "ledgerwatch";
repo = pname;
rev = "v${version}";
2022-07-08 11:26:57 +02:00
sha256 = "sha256-/aT8E60dCk5spj5l5Zw/8FL1LfzXWYi7agiLflLYI5c=";
2022-07-02 13:24:39 +02:00
fetchSubmodules = true;
2020-09-25 11:00:31 +02:00
};
2022-07-08 11:26:57 +02:00
vendorSha256 = "sha256-NBWK0wsUbv4bFbmW3xGaQ7LCgmgfRF5zbc/awm8ZZZY=";
2022-01-01 06:05:03 +01:00
proxyVendor = true;
2020-09-25 11:00:31 +02:00
2021-06-08 15:41:43 +02:00
# Build errors in mdbx when format hardening is enabled:
# cc1: error: '-Wformat-security' ignored without '-Wformat' [-Werror=format-security]
hardeningDisable = [ "format" ];
2020-09-25 11:00:31 +02:00
subPackages = [
2021-06-08 15:41:43 +02:00
"cmd/erigon"
2021-05-03 22:29:30 +02:00
"cmd/evm"
2020-09-25 11:00:31 +02:00
"cmd/rpcdaemon"
2021-05-03 22:29:30 +02:00
"cmd/rlpdump"
2020-09-25 11:00:31 +02:00
];
meta = with lib; {
2021-06-08 15:41:43 +02:00
homepage = "https://github.com/ledgerwatch/erigon/";
description = "Ethereum node implementation focused on scalability and modularity";
2021-05-04 12:59:54 +02:00
license = with licenses; [ lgpl3Plus gpl3Plus ];
2021-08-08 19:11:45 +02:00
maintainers = with maintainers; [ d-xo ];
2020-09-25 11:00:31 +02:00
};
}