testing: unbreak functional tests in devshells

turns out that adding busybox to checkInputs just totally trashes f1 testing.

Change-Id: Iac8d49a59a39c44e0663d7ae760e0a0473ebf7fd
This commit is contained in:
eldritch horrors
2025-08-15 15:26:27 +02:00
parent 7869385b98
commit c3bfb6fe17
+4 -8
View File
@@ -358,14 +358,10 @@ stdenv.mkDerivation (finalAttrs: {
# configure, but we don't actually want to *run* the checks here.
++ lib.optionals lintInsteadOfBuild finalAttrs.checkInputs;
checkInputs =
[
gtest
rapidcheck
]
++ lib.optionals hostPlatform.isLinux [
pkgsStatic.busybox
];
checkInputs = [
gtest
rapidcheck
];
propagatedBuildInputs = lib.optionals (!finalAttrs.dontBuild) maybePropagatedInputs;