From 33bd477c5dde1e6cb0741cbd1c86be54a199f4fa Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 27 Jun 2026 20:49:19 +0200 Subject: [PATCH] freescout: fix passthru tests This must be a flat attribute set, not a nested one. --- pkgs/by-name/fr/freescout/package.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/by-name/fr/freescout/package.nix b/pkgs/by-name/fr/freescout/package.nix index 440fad6b2a9a..3e025467f52c 100644 --- a/pkgs/by-name/fr/freescout/package.nix +++ b/pkgs/by-name/fr/freescout/package.nix @@ -46,9 +46,7 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - passthru.tests = { - inherit (nixosTests) freescout; - }; + passthru.tests = lib.attrValues nixosTests.freescout; # Because freescout is searching for some folders only relative to it's own source location, we need to have the symlinks to the actual locations in here dontCheckForBrokenSymlinks = true;