Skip to content

Commit

Permalink
fix build on x86_64-darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
fricklerhandwerk committed Jun 2, 2024
1 parent 181da46 commit bee1b0f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion npins.nix
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,13 @@ let

inherit src;

buildInputs = lib.optional stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ Security ]);
buildInputs = lib.optional stdenv.isDarwin (
with darwin.apple_sdk.frameworks;
[
Security
SystemConfiguration
]
);
nativeBuildInputs = [ makeWrapper ];

# (Almost) all tests require internet
Expand Down

0 comments on commit bee1b0f

Please sign in to comment.