From ba3b713f8c259275a01532b100e65a64ba4fdc30 Mon Sep 17 00:00:00 2001 From: Brandon Lucas Date: Sun, 15 Feb 2026 16:59:37 -0500 Subject: [PATCH] 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 --- flake.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/flake.nix b/flake.nix index ded4279..847a3c8 100644 --- a/flake.nix +++ b/flake.nix @@ -64,6 +64,8 @@ nativeBuildInputs = [ pkgs.pkg-config ]; buildInputs = [ pkgs.openssl ]; + + doCheck = false; }; } );