From 0d4e839df40466e2020ee321da299ba63c6a0e9b Mon Sep 17 00:00:00 2001 From: Artemis Tosini Date: Tue, 14 Jul 2026 16:47:28 -0400 Subject: [PATCH] sqlite: Do not run tests on BSD --- pkgs/development/libraries/sqlite/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/sqlite/default.nix b/pkgs/development/libraries/sqlite/default.nix index bc27578cda3d..9ac51240bc0c 100644 --- a/pkgs/development/libraries/sqlite/default.nix +++ b/pkgs/development/libraries/sqlite/default.nix @@ -132,7 +132,8 @@ stdenv.mkDerivation rec { ''; # SQLite’s tests are unreliable on Darwin. Sometimes they run successfully, but often they do not. - doCheck = !stdenv.hostPlatform.isDarwin; + # The tests are only defined for Darwin, Linux, Windows, and OpenBSD, not any other unix-like OS. + doCheck = stdenv.hostPlatform.isLinux; # When tcl is not available, only run test targets that don't need it. checkTarget = lib.optionalString stdenv.hostPlatform.isStatic "fuzztest sourcetest";