Disable tests in package build for flake consumption

Some tests require network access or specific environment conditions
that aren't available during Nix build sandboxing. Skip tests in the
package derivation to allow consuming this flake as a dependency.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-02-15 16:59:37 -05:00
parent 26d340b5a3
commit ba3b713f8c

View File

@@ -64,6 +64,8 @@
nativeBuildInputs = [ pkgs.pkg-config ]; nativeBuildInputs = [ pkgs.pkg-config ];
buildInputs = [ pkgs.openssl ]; buildInputs = [ pkgs.openssl ];
doCheck = false;
}; };
} }
); );