fb303: format with nixfmt-rfc-style

This commit is contained in:
Emily
2024-11-13 15:28:01 +00:00
parent 143f253756
commit 6582129eab
+18 -15
View File
@@ -1,13 +1,14 @@
{ stdenv
, lib
, fetchFromGitHub
, cmake
, fbthrift
, fizz
, folly
, glog
, python3
, wangle
{
stdenv,
lib,
fetchFromGitHub,
cmake,
fbthrift,
fizz,
folly,
glog,
python3,
wangle,
}:
stdenv.mkDerivation rec {
@@ -22,11 +23,13 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ cmake ];
cmakeFlags = [
"-DPYTHON_EXTENSIONS=OFF"
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
"-DCMAKE_OSX_DEPLOYMENT_TARGET=10.14" # For aligned allocation
];
cmakeFlags =
[
"-DPYTHON_EXTENSIONS=OFF"
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
"-DCMAKE_OSX_DEPLOYMENT_TARGET=10.14" # For aligned allocation
];
buildInputs = [
fbthrift