Skip to content

Commit

Permalink
lighthouse: fix darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
happysalada authored and Yt committed Jan 19, 2023
1 parent 18fcb31 commit 0e2f756
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion pkgs/applications/blockchains/lighthouse/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
, testers
, unzip
, nix-update-script
, SystemConfiguration
}:

rustPlatform.buildRustPackage rec {
Expand All @@ -41,7 +42,7 @@ rustPlatform.buildRustPackage rec {
buildInputs = lib.optionals stdenv.isDarwin [
Security
] ++ lib.optionals (stdenv.isDarwin && stdenv.isx86_64) [
CoreFoundation
CoreFoundation SystemConfiguration
];

depositContractSpec = fetchurl {
Expand Down
2 changes: 1 addition & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -37307,7 +37307,7 @@ with pkgs;
lguf-brightness = callPackage ../misc/lguf-brightness { };

lighthouse = darwin.apple_sdk_11_0.callPackage ../applications/blockchains/lighthouse {
inherit (darwin.apple_sdk_11_0.frameworks) CoreFoundation Security;
inherit (darwin.apple_sdk_11_0.frameworks) CoreFoundation Security SystemConfiguration;
};

lilypond = callPackage ../misc/lilypond { guile = guile_1_8; };
Expand Down

0 comments on commit 0e2f756

Please sign in to comment.