Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pkgs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
heimdall = callPackage ./heimdall {};
lighthouse = callPackageUnstable ./lighthouse {inherit foundry;};
mcl = callPackage ./mcl {};
mev-boost = callPackage ./mev-boost {inherit blst;};
mev-boost = callPackageUnstable ./mev-boost {inherit blst;};
mev-boost-builder = callPackage ./mev-boost-builder {inherit blst;};
mev-boost-relay = callPackage ./mev-boost-relay {inherit blst;};
mev-rs = callPackage ./mev-rs {};
Expand Down Expand Up @@ -135,8 +135,8 @@
mev-boost.bin = "mev-boost";
mev-rs.bin = "mev";
nethermind = {
nethermind.bin = "Nethermind.Cli";
nethermind-runner.bin = "Nethermind.Runner";
nethermind.bin = "nethermind-cli";
nethermind-runner.bin = "nethermind";
};
nimbus = {
nimbus-beacon-node.bin = "nimbus_beacon_node";
Expand Down
6 changes: 3 additions & 3 deletions pkgs/geth/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@
in
buildGoModule rec {
pname = "geth";
version = "1.15.0";
version = "1.15.2";
src = fetchFromGitHub {
owner = "ethereum";
repo = "go-ethereum";
rev = "v${version}";
hash = "sha256-qfk9G3/wzeh8Nf7BG4Qv6It/bY1ZYoYyHsgoqgCyd6E=";
hash = "sha256-eaUkPl8vQzvotYfZcnuBwphSfO33RPjWOYhyNNvXli4=";
};

proxyVendor = true;
vendorHash = "sha256-gTwmtrdj3+Pa4UxaUuhwk2Dtgur82Tbd0ict1cgVinw=";
vendorHash = "sha256-cfBTSroeDb/htGzIWG8c9Jty+Qo0TrQBrnyYy/Yo2C4=";

ldflags = ["-s" "-w"];

Expand Down
6 changes: 3 additions & 3 deletions pkgs/mev-boost/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@
}:
buildGoModule rec {
pname = "mev-boost";
version = "1.8";
version = "1.9-rc2";

src = fetchFromGitHub {
owner = "flashbots";
repo = "${pname}";
rev = "v${version}";
hash = "sha256-EFPVBSSIef3cTrYp3X1xCEOtYcGpuW/GZXHXX+0wGd8=";
hash = "sha256-TRcqtX3V7OagWlpiT8tK7P4Up27JE7EHtacFJbsHau4=";
};

vendorHash = "sha256-xkncfaqNfgPt5LEQ3JyYXHHq6slOUchomzqwkZCgCOM=";
vendorHash = "sha256-YUm9Kz+pB8fPSh3eOdrfk2OMc7fNj1gXD7IeYiW2cuQ=";

buildInputs = [blst];

Expand Down
6 changes: 3 additions & 3 deletions pkgs/nethermind/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
}: let
self = buildDotnetModule rec {
pname = "nethermind";
version = "1.30.3";
version = "1.31.0";

src = fetchFromGitHub {
owner = "NethermindEth";
repo = pname;
rev = version;
hash = "sha256-J2G2ENgYfyUSNoi2tKIlbZzVXkxXqWP8Q+NihIzLiHo=";
hash = "sha256-lR/WHOR8idHYr0QDwgNSvaUBaBmEUXlXkXvKrRpxBl8=";
fetchSubmodules = true;
};

Expand Down Expand Up @@ -59,7 +59,7 @@
description = "Our flagship Ethereum client for Linux, Windows, and macOS—full and actively developed";
homepage = "https://nethermind.io/nethermind-client";
license = lib.licenses.gpl3;
mainProgram = "Nethermind.Runner";
mainProgram = "nethermind";
platforms = ["x86_64-linux"];
};
};
Expand Down
Loading
Loading