h3: do not expose static as argument

This commit is contained in:
Mario Rodas 2023-12-25 04:20:00 +00:00
parent 7858f253d6
commit fd109717f8

View File

@ -2,7 +2,6 @@
, stdenv
, cmake
, fetchFromGitHub
, static ? stdenv.hostPlatform.isStatic
}:
let
@ -23,7 +22,7 @@ let
nativeBuildInputs = [ cmake ];
cmakeFlags = [
"-DBUILD_SHARED_LIBS=${if static then "OFF" else "ON"}"
"-DBUILD_SHARED_LIBS=ON"
"-DBUILD_BENCHMARKS=OFF"
"-DBUILD_FUZZERS=OFF"
"-DBUILD_GENERATORS=OFF"