From 577de1655a882cb4984e5b3103e1057a08407ad1 Mon Sep 17 00:00:00 2001 From: Hraban Date: Mon, 6 Jul 2026 01:42:18 -0400 Subject: [PATCH] ecl: add SBCL as passthru test ECL is used as the bootstrap compiler for SBCL, which makes it a comprehensive test for ECL. --- pkgs/development/compilers/ecl/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/compilers/ecl/default.nix b/pkgs/development/compilers/ecl/default.nix index e1abbcf34c4c..14cc4f5b2466 100644 --- a/pkgs/development/compilers/ecl/default.nix +++ b/pkgs/development/compilers/ecl/default.nix @@ -17,6 +17,7 @@ threadSupport ? true, useBoehmgc ? false, boehmgc, + sbcl, }: let @@ -80,6 +81,9 @@ stdenv.mkDerivation rec { }" ''; + # ECL is used as a bootstrap compiler for SBCL. + passthru.tests.sbcl = sbcl; + meta = { description = "Lisp implementation aiming to be small, fast and easy to embed"; homepage = "https://common-lisp.net/project/ecl/";