router: fix cargoTestFlags/cargoBuildFlags for structuredAttrs

This commit is contained in:
Stefan Frijters
2026-01-28 12:22:39 +01:00
parent 7ae692a500
commit 37b3c09cb0
+3 -2
View File
@@ -37,10 +37,11 @@ rustPlatform.buildRustPackage rec {
# The v8 package will try to download a `librusty_v8.a` release at build time to our read-only filesystem
# To avoid this we pre-download the file and export it via RUSTY_V8_ARCHIVE
RUSTY_V8_ARCHIVE = callPackage ./librusty_v8.nix { };
env.RUSTY_V8_ARCHIVE = callPackage ./librusty_v8.nix { };
cargoTestFlags = [
"-- --skip=query_planner::tests::missing_typename_and_fragments_in_requires"
"--"
"--skip=query_planner::tests::missing_typename_and_fragments_in_requires"
];
passthru = {