aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--flake.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index 2000c2d73..5e0504a59 100644
--- a/flake.nix
+++ b/flake.nix
@@ -96,6 +96,7 @@
++ lib.optionals (stdenv.isLinux && !(isStatic && stdenv.system == "aarch64-linux")) [
"LDFLAGS=-fuse-ld=gold"
];
+
testConfigureFlags = [
"CXXFLAGS=-I${lib.getDev rapidcheck}/extras/gtest/include"
];
@@ -651,7 +652,7 @@
buildInputs = buildDeps ++ propagatedDeps ++ awsDeps ++ checkDeps;
- inherit configureFlags;
+ configureFlags = configureFlags ++ testConfigureFlags;
enableParallelBuilding = true;