Skip to content

Commit 7f2cbb5

Browse files
nethermind: 1.19.3 -> 1.25.3 (#345)
* nethermind: 1.19.3 -> 1.20.1 Diff: NethermindEth/nethermind@1.19.3...1.20.1 * fix(nethermind): try to fix PackageSourceMapping * nethermind: 1.20.1 -> 1.20.3 Diff: NethermindEth/nethermind@1.20.1...1.20.3 * chore: update nethermind deps * feat: bump nethermind to version 1.20.4 * nethermind: 1.20.4 -> 1.21.0 Diff: NethermindEth/nethermind@1.20.4...1.21.0 * chore: change executable names * fix: add fake nuget.config * chore: update nethermind to v1.25.3 * chore(nethermind): change exe in nethermind module --------- Co-authored-by: Aldo Borrero <[email protected]>
1 parent 02771f8 commit 7f2cbb5

File tree

4 files changed

+410
-460
lines changed

4 files changed

+410
-460
lines changed

modules/nethermind/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ in {
136136
{
137137
User = serviceName;
138138
StateDirectory = serviceName;
139-
ExecStart = "${cfg.package}/bin/Nethermind.Runner ${scriptArgs}";
139+
ExecStart = "${cfg.package}/bin/nethermind ${scriptArgs}";
140140
}
141141
(mkIf (cfg.args.modules.JsonRpc.JwtSecretFile != null) {
142142
LoadCredential = ["jwtsecret:${cfg.args.modules.JsonRpc.JwtSecretFile}"];

pkgs/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
mev-boost-prysm = callPackage ./mev-boost-prysm {inherit bls blst;};
5353
mev-boost-relay = callPackage ./mev-boost-relay {inherit blst;};
5454
mev-rs = callPackage ./mev-rs {};
55-
nethermind = callPackage ./nethermind {};
55+
nethermind = callPackageUnstable ./nethermind {};
5656
nimbus = callPackageUnstable ./nimbus {};
5757
prysm = callPackage ./prysm {inherit bls blst;};
5858
reth = callPackageUnstable ./reth {};

pkgs/nethermind/default.nix

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@
77
rocksdb,
88
snappy,
99
stdenv,
10-
zstd,
1110
writeShellScriptBin,
11+
zstd,
1212
}: let
1313
self = buildDotnetModule rec {
1414
pname = "nethermind";
15-
version = "1.19.3";
15+
version = "1.25.3";
1616

1717
src = fetchFromGitHub {
1818
owner = "NethermindEth";
1919
repo = pname;
2020
rev = version;
21-
hash = "sha256-vqcgBT7kSyrgRl2hLehbCjsQ/AC4+a3LMOdAcmcNOFo=";
21+
hash = "sha256-v3wfDT7wlr2ryz+m/mIkMtueSpmGV5HntqkZekVkYu8=";
2222
fetchSubmodules = true;
2323
};
2424

@@ -42,12 +42,12 @@
4242
nugetDeps = ./nuget-deps.nix;
4343

4444
executables = [
45-
"Nethermind.Cli"
46-
"Nethermind.Runner"
45+
"nethermind-cli"
46+
"nethermind"
4747
];
4848

49-
dotnet-sdk = dotnetCorePackages.sdk_7_0;
50-
dotnet-runtime = dotnetCorePackages.aspnetcore_7_0;
49+
dotnet-sdk = dotnetCorePackages.sdk_8_0;
50+
dotnet-runtime = dotnetCorePackages.aspnetcore_8_0;
5151

5252
passthru = {
5353
# buildDotnetModule's `fetch-deps` uses `writeShellScript` instead of writeShellScriptBin making nix run .#nethermind.fetch-deps command to fail

0 commit comments

Comments
 (0)