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 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 = {
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
Original file line number Diff line number Diff line change 66} :
77buildGoModule 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
Original file line number Diff line number Diff line change 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 { } ;
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 { } ;
You can’t perform that action at this time.
0 commit comments