surrealpatch/pkg/nix/spec/x86_64-apple-darwin.nix

24 lines
611 B
Nix
Raw Normal View History

{ pkgs, target, util }:
{
inherit target;
features = with util.features; [ storage-mem storage-rocksdb scripting http storage-tikv ];
buildSpec = with pkgs; {
depsBuildBuild = [ clang protobuf perl ];
2023-05-11 18:43:41 +00:00
nativeBuildInputs = [ cmake pkg-config ];
2022-12-17 15:08:07 +00:00
buildInputs = [ openssl libiconv darwin.apple_sdk.frameworks.Security ];
2023-05-11 18:43:41 +00:00
# From https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/libraries/rocksdb/default.nix#LL43C7-L52C6
NIX_CFLAGS_COMPILE = toString ([
"-Wno-error=unused-private-field"
"-faligned-allocation"
]);
2023-05-11 18:43:41 +00:00
CARGO_BUILD_TARGET = target;
};
}