wiredtiger: fix eval

Environment variables must be strings, booleans or integers.
This commit is contained in:
Niklas Korz
2026-04-04 12:43:58 +02:00
parent c8203cfcee
commit a78017f53b
+1 -1
View File
@@ -44,7 +44,7 @@ stdenv.mkDerivation (finalAttrs: {
(lib.cmakeFeature "CMAKE_INSTALL_LIBDIR" "lib")
];
env.NIX_CFLAGS_COMPILE = [ "-Wno-array-bounds" ];
env.NIX_CFLAGS_COMPILE = "-Wno-array-bounds";
passthru.updateScript = nix-update-script { };