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
965 B
Nix
Raw Normal View History

2021-08-24 08:22:39 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
2020-09-25 09:00:31 +00:00
buildGoModule rec {
2021-06-08 13:41:43 +00:00
pname = "erigon";
2022-10-06 09:48:48 +00:00
version = "2022.10.01";
2020-09-25 09:00:31 +00:00
src = fetchFromGitHub {
owner = "ledgerwatch";
repo = pname;
rev = "v${version}";
2022-10-06 09:48:48 +00:00
sha256 = "sha256-FuOVI59vfhm5q92hnfgarh3zpLXSDRmZQJuERHf4I7A=";
2022-07-02 11:24:39 +00:00
fetchSubmodules = true;
2020-09-25 09:00:31 +00:00
};
2022-10-09 00:33:12 +00:00
vendorSha256 = "sha256-B9brjWvYw65ti2Ac3D4nQUEax/q+Uf5DTPBHXeWQybw=";
2022-01-01 05:05:03 +00:00
proxyVendor = true;
2020-09-25 09:00:31 +00:00
2021-06-08 13:41:43 +00: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 09:00:31 +00:00
subPackages = [
2021-06-08 13:41:43 +00:00
"cmd/erigon"
2021-05-03 20:29:30 +00:00
"cmd/evm"
2020-09-25 09:00:31 +00:00
"cmd/rpcdaemon"
2021-05-03 20:29:30 +00:00
"cmd/rlpdump"
2020-09-25 09:00:31 +00:00
];
meta = with lib; {
2021-06-08 13:41:43 +00:00
homepage = "https://github.com/ledgerwatch/erigon/";
description = "Ethereum node implementation focused on scalability and modularity";
2021-05-04 10:59:54 +00:00
license = with licenses; [ lgpl3Plus gpl3Plus ];
2022-09-19 00:56:52 +00:00
maintainers = with maintainers; [ d-xo happysalada ];
2020-09-25 09:00:31 +00:00
};
}