erigon: 2.55.1 -> 2.59.2

This commit is contained in:
Raghav Sood 2024-03-29 21:24:51 +08:00
parent 8cb260087a
commit 4e30d81138
No known key found for this signature in database
GPG Key ID: 13D53E9EB65DE19C
1 changed files with 11 additions and 3 deletions

View File

@ -2,7 +2,7 @@
let
pname = "erigon";
version = "2.55.1";
version = "2.59.2";
in
buildGoModule {
inherit pname version;
@ -11,11 +11,11 @@ buildGoModule {
owner = "ledgerwatch";
repo = pname;
rev = "v${version}";
hash = "sha256-ttBJIx2QR3H5JFyquoGwZpWwT10r7X7GnGE4uEzuRZA=";
hash = "sha256-gSoaPoyPyryC1yzYaafnPXKpMNzI9fw9Yd0nKzziAKw=";
fetchSubmodules = true;
};
vendorHash = "sha256-QLuWxec1gwMnVo0Zw8z4Ef8vzxc4xFpLL/TT986Sljo=";
vendorHash = "sha256-B3xbCI0szSAo9ULHDiqoTTR8tvgZUry7spDGuldu0lU=";
proxyVendor = true;
# Build errors in mdbx when format hardening is enabled:
@ -34,6 +34,14 @@ buildGoModule {
"cmd/rlpdump"
];
# Matches the tags to upstream's release build configuration
# https://github.com/ledgerwatch/erigon/blob/0c0dbe5f3a81cf8f16da8e4838312ab80ebe5302/.goreleaser.yml
#
# Enabling silkworm also breaks the build as it requires dynamically linked libraries.
# If we need it in the future, we should consider packaging silkworm and silkworm-go
# as depenedencies explicitly.
tags = "-tags=nosqlite,noboltdb,nosilkworm";
passthru.updateScript = nix-update-script { };
meta = with lib; {