Merge pull request #234678 from sandydoo/fix/meilisearch-darwin

meilisearch: fix build on x86_64-darwin
This commit is contained in:
Weijia Wang 2023-05-29 01:52:51 +03:00 committed by GitHub
commit aeca89c417
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 5 deletions

View file

@ -3,8 +3,6 @@
, rustPlatform
, fetchFromGitHub
, Security
, DiskArbitration
, Foundation
, nixosTests
, nix-update-script
}:
@ -41,8 +39,6 @@ rustPlatform.buildRustPackage {
buildInputs = lib.optionals stdenv.isDarwin [
Security
DiskArbitration
Foundation
];
passthru = {

View file

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