Skip to content

Commit 19a15ea

Browse files
authored
erigon: 2.61.3 -> 3.0.3 (#609)
1 parent 05e3264 commit 19a15ea

File tree

4 files changed

+28
-4
lines changed

4 files changed

+28
-4
lines changed

flake.lock

Lines changed: 17 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
# packages
1111
nixpkgs.url = "github:nixos/nixpkgs/24.05";
1212
nixpkgs-2311.url = "github:nixos/nixpkgs/23.11";
13+
nixpkgs-2411.url = "github:nixos/nixpkgs/24.11";
1314
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixpkgs-unstable";
1415

1516
foundry-nix = {
@@ -84,6 +85,10 @@
8485
inherit system;
8586
nixpkgs = inputs.nixpkgs-2311;
8687
};
88+
pkgs2411 = lib.mkNixpkgs {
89+
inherit system;
90+
nixpkgs = inputs.nixpkgs-2411;
91+
};
8792
};
8893

8994
# devshell

pkgs/by-name/er/erigon/default.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@
66
}:
77
buildGoModule rec {
88
pname = "erigon";
9-
version = "2.61.3";
9+
version = "3.0.3";
1010

1111
src = fetchFromGitHub {
1212
owner = "erigontech";
1313
repo = pname;
1414
rev = "v${version}";
15-
hash = "sha256-VGLuPaGYx/DQc3Oc9wAbELXAtkuxr8cbePVBExlZikk=";
15+
hash = "sha256-gSgkdg7677OBOkAbsEjxX1QttuIbfve2A3luUZoZ5Ik=";
1616
fetchSubmodules = true;
1717
};
1818

19-
vendorHash = "sha256-1LB2T0o9LjFdpl86NPMKx1lFLrQZefAGldcSQyL6O7M=";
19+
vendorHash = "sha256-8eyC3JkRcRlFw8CyTK5w1XySur2jAeFGXkEaY/3Oq0k=";
2020
proxyVendor = true;
2121

2222
# Silkworm's .so fails to find libgmp when linking

pkgs/default.nix

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,15 @@
1717
pkgs,
1818
pkgsUnstable,
1919
pkgs2311,
20+
pkgs2411,
2021
system,
2122
...
2223
}: let
2324
inherit (pkgs) callPackage;
2425
inherit (lib) platformPkgs platformApps;
2526
callPackageUnstable = pkgsUnstable.callPackage;
2627
callPackage2311 = pkgs2311.callPackage;
28+
callPackage2411 = pkgs2411.callPackage;
2729
in {
2830
packages = platformPkgs system rec {
2931
besu = callPackageUnstable ./by-name/be/besu {};
@@ -34,7 +36,7 @@
3436
dirk = callPackage ./by-name/di/dirk {inherit bls mcl;};
3537
dreamboat = callPackage ./by-name/dr/dreamboat {inherit blst;};
3638
eigenlayer = callPackage ./by-name/ei/eigenlayer {};
37-
erigon = callPackage ./by-name/er/erigon {};
39+
erigon = callPackage2411 ./by-name/er/erigon {};
3840
eth2-testnet-genesis = callPackage ./by-name/et/eth2-testnet-genesis {inherit bls;};
3941
eth2-val-tools = callPackage ./by-name/et/eth2-val-tools {inherit bls mcl;};
4042
eth-validator-watcher = callPackage2311 ./by-name/et/eth-validator-watcher {};

0 commit comments

Comments
 (0)