meilisearch: fixes build on darwin

This commit is contained in:
Manuel de Ruiter 2024-01-20 14:01:12 +01:00
parent b914a998ec
commit 506ce5b145
2 changed files with 3 additions and 2 deletions

View File

@ -3,6 +3,7 @@
, rustPlatform
, fetchFromGitHub
, Security
, SystemConfiguration
, nixosTests
, nix-update-script
}:
@ -40,7 +41,7 @@ rustPlatform.buildRustPackage {
buildNoDefaultFeatures = true;
buildInputs = lib.optionals stdenv.isDarwin [
Security
Security SystemConfiguration
];
passthru = {

View File

@ -10184,7 +10184,7 @@ with pkgs;
};
meilisearch = callPackage ../servers/search/meilisearch {
inherit (darwin.apple_sdk_11_0.frameworks) Security;
inherit (darwin.apple_sdk_11_0.frameworks) Security SystemConfiguration;
};
memtester = callPackage ../tools/system/memtester { };