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
6 changes: 3 additions & 3 deletions flake.lock

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

2 changes: 1 addition & 1 deletion pkgs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
mev-rs = callPackage ./mev-rs {};
nethermind = callPackageUnstable ./nethermind {};
nimbus = callPackageUnstable ./nimbus {};
prysm = callPackage ./prysm {inherit bls blst;};
prysm = callPackageUnstable ./prysm {inherit bls blst;};
reth = callPackageUnstable ./reth {};
rocketpool = callPackage ./rocketpool {};
rocketpoold = callPackage ./rocketpoold {inherit bls blst;};
Expand Down
10 changes: 5 additions & 5 deletions pkgs/prysm/default.nix
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
{
bls,
blst,
buildGo121Module,
buildGo123Module,
fetchFromGitHub,
libelf,
}:
buildGo121Module rec {
buildGo123Module rec {
pname = "prysm";
version = "5.0.3";
version = "5.3.0";

src = fetchFromGitHub {
owner = "prysmaticlabs";
repo = pname;
rev = "v${version}";
hash = "sha256-h1ff0FqFdJMImkCI8UxRwjHqOfZuS56Mo73QJGVtE9Q=";
hash = "sha256-bTA7KOfhdsVIQk6d9pnBAYmmuzj3KQnvMO/OrEpx5uA=";
};

vendorHash = "sha256-cR1/OxL2qulK8FLm469X7SwFDCxFfyEVv0vro2Fv48w=";
vendorHash = "sha256-1PAeAI6yaXSE881Bsp2hhPSctePc5CwWYkk8QVounAA=";

buildInputs = [bls blst libelf];

Expand Down