File tree Expand file tree Collapse file tree 4 files changed +28
-4
lines changed Expand file tree Collapse file tree 4 files changed +28
-4
lines changed Original file line number Diff line number Diff line change 10
10
# packages
11
11
nixpkgs . url = "github:nixos/nixpkgs/24.05" ;
12
12
nixpkgs-2311 . url = "github:nixos/nixpkgs/23.11" ;
13
+ nixpkgs-2411 . url = "github:nixos/nixpkgs/24.11" ;
13
14
nixpkgs-unstable . url = "github:nixos/nixpkgs/nixpkgs-unstable" ;
14
15
15
16
foundry-nix = {
84
85
inherit system ;
85
86
nixpkgs = inputs . nixpkgs-2311 ;
86
87
} ;
88
+ pkgs2411 = lib . mkNixpkgs {
89
+ inherit system ;
90
+ nixpkgs = inputs . nixpkgs-2411 ;
91
+ } ;
87
92
} ;
88
93
89
94
# devshell
Original file line number Diff line number Diff line change 6
6
} :
7
7
buildGoModule rec {
8
8
pname = "erigon" ;
9
- version = "2.61 .3" ;
9
+ version = "3.0 .3" ;
10
10
11
11
src = fetchFromGitHub {
12
12
owner = "erigontech" ;
13
13
repo = pname ;
14
14
rev = "v${ version } " ;
15
- hash = "sha256-VGLuPaGYx/DQc3Oc9wAbELXAtkuxr8cbePVBExlZikk =" ;
15
+ hash = "sha256-gSgkdg7677OBOkAbsEjxX1QttuIbfve2A3luUZoZ5Ik =" ;
16
16
fetchSubmodules = true ;
17
17
} ;
18
18
19
- vendorHash = "sha256-1LB2T0o9LjFdpl86NPMKx1lFLrQZefAGldcSQyL6O7M =" ;
19
+ vendorHash = "sha256-8eyC3JkRcRlFw8CyTK5w1XySur2jAeFGXkEaY/3Oq0k =" ;
20
20
proxyVendor = true ;
21
21
22
22
# Silkworm's .so fails to find libgmp when linking
Original file line number Diff line number Diff line change 17
17
pkgs ,
18
18
pkgsUnstable ,
19
19
pkgs2311 ,
20
+ pkgs2411 ,
20
21
system ,
21
22
...
22
23
} : let
23
24
inherit ( pkgs ) callPackage ;
24
25
inherit ( lib ) platformPkgs platformApps ;
25
26
callPackageUnstable = pkgsUnstable . callPackage ;
26
27
callPackage2311 = pkgs2311 . callPackage ;
28
+ callPackage2411 = pkgs2411 . callPackage ;
27
29
in {
28
30
packages = platformPkgs system rec {
29
31
besu = callPackageUnstable ./by-name/be/besu { } ;
34
36
dirk = callPackage ./by-name/di/dirk { inherit bls mcl ; } ;
35
37
dreamboat = callPackage ./by-name/dr/dreamboat { inherit blst ; } ;
36
38
eigenlayer = callPackage ./by-name/ei/eigenlayer { } ;
37
- erigon = callPackage ./by-name/er/erigon { } ;
39
+ erigon = callPackage2411 ./by-name/er/erigon { } ;
38
40
eth2-testnet-genesis = callPackage ./by-name/et/eth2-testnet-genesis { inherit bls ; } ;
39
41
eth2-val-tools = callPackage ./by-name/et/eth2-val-tools { inherit bls mcl ; } ;
40
42
eth-validator-watcher = callPackage2311 ./by-name/et/eth-validator-watcher { } ;
You can’t perform that action at this time.
0 commit comments