From c3bfb6fe17a9f768afc3d9c3fc24929d44570e72 Mon Sep 17 00:00:00 2001 From: eldritch horrors Date: Fri, 15 Aug 2025 15:26:27 +0200 Subject: [PATCH] testing: unbreak functional tests in devshells turns out that adding busybox to checkInputs just totally trashes f1 testing. Change-Id: Iac8d49a59a39c44e0663d7ae760e0a0473ebf7fd --- package.nix | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/package.nix b/package.nix index f0cf7a116..4d0a35060 100644 --- a/package.nix +++ b/package.nix @@ -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;