Skip to content

Commit 8c711e6

Browse files
monyarmMartinNikov
authored andcommitted
update(nethermind): 1.19.3 -> 1.25.1
1 parent c44d87e commit 8c711e6

File tree

3 files changed

+476
-2374
lines changed

3 files changed

+476
-2374
lines changed

packages/clients/execution/nethermind/default.nix

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
}: let
1313
self = buildDotnetModule rec {
1414
pname = "nethermind";
15-
version = "1.19.3";
15+
version = "1.25.1";
1616

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

@@ -29,6 +29,9 @@
2929
zstd
3030
];
3131

32+
fakeGit = writeShellScriptBin "git" "echo ${version}";
33+
nativeBuildInputs = [fakeGit];
34+
3235
runtimeDeps = [
3336
rocksdb
3437
snappy
@@ -42,12 +45,12 @@
4245
nugetDeps = ./nuget-deps.nix;
4346

4447
executables = [
45-
"Nethermind.Cli"
46-
"Nethermind.Runner"
48+
"nethermind-cli"
49+
"nethermind"
4750
];
4851

49-
dotnet-sdk = dotnetCorePackages.sdk_7_0;
50-
dotnet-runtime = dotnetCorePackages.aspnetcore_7_0;
52+
dotnet-sdk = dotnetCorePackages.sdk_8_0;
53+
dotnet-runtime = dotnetCorePackages.aspnetcore_8_0;
5154

5255
passthru = rec {
5356
# buildDotnetModule's `fetch-deps` uses `writeShellScript` instead of writeShellScriptBin making nix run .#nethermind.fetch-deps command to fail
@@ -60,7 +63,7 @@
6063
description = "Our flagship Ethereum client for Linux, Windows, and macOS—full and actively developed";
6164
homepage = "https://nethermind.io/nethermind-client";
6265
license = lib.licenses.gpl3;
63-
mainProgram = "Nethermind.Runner";
66+
mainProgram = "nethermind";
6467
platforms = ["x86_64-linux"];
6568
};
6669
};

0 commit comments

Comments
 (0)