Skip to content
Closed
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
30 changes: 15 additions & 15 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions pkgs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@
# meta.platforms = [system];
meta.platforms = ["x86_64-linux" "aarch64-linux"];
});
geth = callPackage ./geth {};
geth = callPackageUnstable ./geth {};
geth-sealer = callPackage ./geth-sealer {};
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 @@ -124,8 +124,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
9 changes: 3 additions & 6 deletions pkgs/geth/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"abidump"
"abigen"
"blsync"
"bootnode"
"clef"
"devp2p"
"era"
Expand All @@ -21,17 +20,16 @@
in
buildGoModule rec {
pname = "geth";
version = "1.14.13";

version = "1.15.4";
src = fetchFromGitHub {
owner = "ethereum";
repo = "go-ethereum";
rev = "v${version}";
hash = "sha256-oJe+V11WArXVmoIC7nYN6oKc0VoHtRtelidyb3v6skI=";
hash = "sha256-Vk/lrRmmRqPe2c6Ww8LPM1NrhZCmfeykXYZKVuXaDPU=";
};

proxyVendor = true;
vendorHash = "sha256-IEwy3XRyj+5GjAWRjPsd5qzwEMpI/pZIwPjKdeATgkE=";
vendorHash = "sha256-byp1FzB4cSk9TayjaamsVfgzX0H531kzSXVHxDgWTes=";

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

Expand All @@ -48,7 +46,6 @@ in
"cmd/abidump"
"cmd/abigen"
"cmd/blsync"
"cmd/bootnode"
"cmd/clef"
"cmd/devp2p"
"cmd/era"
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.3";

src = fetchFromGitHub {
owner = "NethermindEth";
repo = pname;
rev = version;
hash = "sha256-J2G2ENgYfyUSNoi2tKIlbZzVXkxXqWP8Q+NihIzLiHo=";
hash = "sha256-EwxmAhzB3FeNMGG6T0dtUv/Z9EHg4TARDjuyoQ/FIcY=";
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