surrealpatch/pkg/nix/spec/x86_64-apple-darwin.nix
2023-03-29 19:16:18 +01:00

24 lines
509 B
Nix

{ pkgs, target, util }:
{
inherit target;
features = with util.features; [ storage-mem http ];
buildSpec = with pkgs; {
depsBuildBuild = [ clang protobuf perl ];
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl libiconv darwin.apple_sdk.frameworks.Security ];
CARGO_BUILD_TARGET = target;
LIBCLANG_PATH = "${llvmPackages.libclang.lib}/lib";
PROTOC = "${protobuf}/bin/protoc";
PROTOC_INCLUDE = "${protobuf}/include";
OPENSSL_NO_VENDOR = "true";
};
}