From de0eb4cfbf2612489db75ec88332787ad205e10d Mon Sep 17 00:00:00 2001 From: Hraban Luyat Date: Sat, 30 Nov 2024 01:20:15 -0500 Subject: [PATCH] sbcl: git versions of SBCL use ps in checkPhase MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Get ahead of upcoming SBCL 2.4.11 release and support those overriding ‘src’. Introduced in https://sourceforge.net/p/sbcl/sbcl/ci/6c784b333ad2206be13c5588af6cf1e56d4ab3f8 --- pkgs/development/compilers/sbcl/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/compilers/sbcl/default.nix b/pkgs/development/compilers/sbcl/default.nix index 34632bf4b50d..39846f6bf6c7 100644 --- a/pkgs/development/compilers/sbcl/default.nix +++ b/pkgs/development/compilers/sbcl/default.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, callPackage, ecl, coreutils, fetchurl, strace, texinfo, which, writeText, zstd +{ lib, stdenv, callPackage, ecl, coreutils, fetchurl, ps, strace, texinfo, which, writeText, zstd , version # Set this to a lisp binary to use a custom bootstrap lisp compiler for SBCL. # Leave as null to use the default. This is useful for local development of @@ -80,6 +80,8 @@ stdenv.mkDerivation (self: { which ] ++ lib.optionals (builtins.elem stdenv.system strace.meta.platforms) [ strace + ] ++ lib.optionals (lib.versionOlder "2.4.10" self.version) [ + ps ] ); buildInputs = lib.optionals self.coreCompression (