meilisearch: fix build on x86_64-darwin

This commit is contained in:
Sander 2023-05-28 16:16:41 +00:00
parent 4c5f59b598
commit c7114ec51a
No known key found for this signature in database
GPG Key ID: D1A763BC84F34603
2 changed files with 3 additions and 3 deletions

View File

@ -2,9 +2,9 @@
, lib
, rustPlatform
, fetchFromGitHub
, Security
, DiskArbitration
, Foundation
, Security
, nixosTests
, nix-update-script
}:
@ -40,9 +40,9 @@ rustPlatform.buildRustPackage {
buildNoDefaultFeatures = true;
buildInputs = lib.optionals stdenv.isDarwin [
Security
DiskArbitration
Foundation
Security
];
passthru = {

View File

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