Merge pull request #335748 from ofalvai/ofalvai/libsignal-fix-darwin

libsignal-ffi: fix darwin build
This commit is contained in:
Weijia Wang
2024-08-21 21:03:53 +02:00
committed by GitHub
+3 -1
View File
@@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, rustPlatform, runCommand, xcodebuild, protobuf, boringssl }:
{ lib, stdenv, fetchFromGitHub, rustPlatform, runCommand, xcodebuild, protobuf, boringssl, darwin }:
let
# boring-sys expects the static libraries in build/ instead of lib/
boringssl-wrapper = runCommand "boringssl-wrapper" { } ''
@@ -21,6 +21,8 @@ rustPlatform.buildRustPackage rec {
hash = "sha256-MFTTrIJ9+1NgaL9KD4t0KYR2feHow+HtyYXQWJgKilM=";
};
buildInputs = lib.optional stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ];
nativeBuildInputs = [
protobuf
rustPlatform.bindgenHook