Merge pull request #204855 from tjni/lighthouse

lighthouse: 3.2.1 -> 3.3.0
This commit is contained in:
figsoda 2022-12-07 19:40:16 -05:00 committed by GitHub
commit 897e895fb1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 5 deletions

View File

@ -10,6 +10,7 @@
, protobuf
, rustPlatform
, Security
, CoreFoundation
, stdenv
, testers
, unzip
@ -17,7 +18,7 @@
rustPlatform.buildRustPackage rec {
pname = "lighthouse";
version = "3.2.1";
version = "3.3.0";
# lighthouse/common/deposit_contract/build.rs
depositContractSpecVersion = "0.12.1";
@ -27,10 +28,10 @@ rustPlatform.buildRustPackage rec {
owner = "sigp";
repo = "lighthouse";
rev = "v${version}";
sha256 = "sha256-Aqc3kk1rquhLKNZDlEun4bQpKI4Nsk7+Wr7E2IkJQEs=";
hash = "sha256-py64CWY3k5Z2mm9WduJ4Fh7lQ8b3sF6iIFsYYjndU5I=";
};
cargoSha256 = "sha256-wGEk7OfEmyeRW65kq5stvKCdnCjfssyXUmNWGkGq42M=";
cargoHash = "sha256-0gWTniLkhuPpgdUkE6gpF9uHYT6BeWWgH6Mu7KpFx9w=";
buildFeatures = [ "modern" "gnosis" ];
@ -38,6 +39,8 @@ rustPlatform.buildRustPackage rec {
buildInputs = lib.optionals stdenv.isDarwin [
Security
] ++ lib.optionals (stdenv.isDarwin && stdenv.isx86_64) [
CoreFoundation
];
depositContractSpec = fetchurl {

View File

@ -36783,8 +36783,8 @@ with pkgs;
lguf-brightness = callPackage ../misc/lguf-brightness { };
lighthouse = callPackage ../applications/blockchains/lighthouse {
inherit (darwin.apple_sdk.frameworks) Security;
lighthouse = darwin.apple_sdk_11_0.callPackage ../applications/blockchains/lighthouse {
inherit (darwin.apple_sdk_11_0.frameworks) CoreFoundation Security;
};
lilypond = callPackage ../misc/lilypond { guile = guile_1_8; };