Skip to content

Commit

Permalink
fix(build): Fix Darwin build (#959)
Browse files Browse the repository at this point in the history
  • Loading branch information
duckpuppy authored Nov 2, 2023
1 parent c734832 commit 5911c7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ rustPlatform.buildRustPackage {
gnused
git
gawk
] ++ lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security;
] ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security darwin.apple_sdk.frameworks.SystemConfiguration ];

prePatch = ''
substituteInPlace ./test/data/plugins/**/bin/* \
Expand Down

0 comments on commit 5911c7b

Please sign in to comment.