Skip to content

Commit f3cc6dc

Browse files
committed
config(pkgs): Get nimbus package from status-im repo
1 parent 54d3b18 commit f3cc6dc

File tree

3 files changed

+32
-5
lines changed

3 files changed

+32
-5
lines changed

flake.lock

Lines changed: 23 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,10 @@
5656
url = "github:nix-community/fenix";
5757
inputs.nixpkgs.follows = "nixpkgs-unstable";
5858
};
59+
nimbus-eth2 = {
60+
url = "git+https://github.com/status-im/nimbus-eth2?tag=v25.3.1&submodules=1";
61+
inputs.nixpkgs.follows = "nixpkgs-unstable";
62+
};
5963
};
6064

6165
outputs = inputs @ {

pkgs/default.nix

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
mev-boost-relay = callPackage ./mev-boost-relay {inherit blst;};
6969
mev-rs = callPackage ./mev-rs {};
7070
nethermind = callPackageUnstable ./nethermind {};
71-
nimbus = callPackageUnstable ./nimbus {};
71+
nimbus = inputs'.nimbus-eth2.packages.beacon_node;
7272
prysm = callPackage ./prysm {inherit bls blst;};
7373
reth = callPackageUnstable ./reth {};
7474
rocketpool = callPackage ./rocketpool {};
@@ -138,10 +138,10 @@
138138
nethermind.bin = "nethermind-cli";
139139
nethermind-runner.bin = "nethermind";
140140
};
141-
nimbus = {
142-
nimbus-beacon-node.bin = "nimbus_beacon_node";
143-
nimbus-validator-client.bin = "nimbus_validator_client";
144-
};
141+
# nimbus = {
142+
# nimbus-beacon-node.bin = "nimbus_beacon_node";
143+
# nimbus-validator-client.bin = "nimbus_validator_client";
144+
# };
145145
prysm = {
146146
prysm-beacon-chain.bin = "beacon-chain";
147147
prysm-validator.bin = "validator";

0 commit comments

Comments
 (0)