From e5005e6790d02d9eaecde035e5e5abfb546425ca Mon Sep 17 00:00:00 2001 From: Conor Schaefer Date: Mon, 22 Jul 2024 09:17:57 -0700 Subject: [PATCH] fix(nix): darwin/linux platform support --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index fb652dac32..55edf69204 100644 --- a/flake.nix +++ b/flake.nix @@ -62,7 +62,7 @@ buildInputs = if stdenv.hostPlatform.isDarwin then with pkgs.darwin.apple_sdk.frameworks; [clang openssl rocksdb SystemConfiguration CoreServices] else - [clang openssl rocksdb SystemConfiguration CoreServices ]; + [clang openssl rocksdb]; inherit system PKG_CONFIG_PATH LIBCLANG_PATH ROCKSDB_LIB_DIR; cargoExtraArgs = "-p pd -p pcli -p pclientd";