2024-05-15 15:35:15 +00:00
|
|
|
|
{ lib, stdenv, callPackage, ecl, coreutils, fetchurl, strace, texinfo, which, writeText, zstd
|
2022-10-30 15:09:59 +00:00
|
|
|
|
, version
|
2024-05-15 15:35:15 +00:00
|
|
|
|
# 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
|
|
|
|
|
# SBCL, because you can use your existing stock SBCL as a boostrap. On Hydra
|
2024-02-29 20:09:43 +00:00
|
|
|
|
# of course we can’t do that because SBCL hasn’t been built yet, so we use
|
2024-05-15 15:35:15 +00:00
|
|
|
|
# ECL but that’s much slower.
|
2024-02-29 20:09:43 +00:00
|
|
|
|
, bootstrapLisp ? null
|
2021-02-17 17:02:09 +00:00
|
|
|
|
}:
|
|
|
|
|
|
2022-10-30 15:09:59 +00:00
|
|
|
|
let
|
|
|
|
|
versionMap = {
|
2024-07-01 15:47:52 +00:00
|
|
|
|
"2.4.6" = {
|
|
|
|
|
sha256 = "sha256-pImQeELa4JoXJtYphb96VmcKrqLz7KH7cCO8pnw/MJE=";
|
|
|
|
|
};
|
2024-07-31 10:19:44 +00:00
|
|
|
|
"2.4.7" = {
|
|
|
|
|
sha256 = "sha256-aFRNJQNjWs0BXVNMzJsq6faJltQptakGP9Iv8JJQEdI=";
|
|
|
|
|
};
|
2024-09-19 14:19:46 +00:00
|
|
|
|
"2.4.8" = {
|
|
|
|
|
sha256 = "sha256-/G7NzFOOgKFKmY1TDMw4SkF5D09Pxs1//oyxJqZ3aUw=";
|
|
|
|
|
};
|
2022-10-30 15:09:59 +00:00
|
|
|
|
};
|
2023-11-16 04:20:00 +00:00
|
|
|
|
# Collection of pre-built SBCL binaries for platforms that need them for
|
2024-05-15 15:35:15 +00:00
|
|
|
|
# bootstrapping. Ideally these are to be avoided. If ECL (or any other
|
2023-11-16 04:20:00 +00:00
|
|
|
|
# non-binary-distributed Lisp) can run on any of these systems, that entry
|
|
|
|
|
# should be removed from this list.
|
|
|
|
|
bootstrapBinaries = rec {
|
|
|
|
|
i686-linux = {
|
|
|
|
|
version = "1.2.7";
|
|
|
|
|
system = "x86-linux";
|
|
|
|
|
sha256 = "07f3bz4br280qvn85i088vpzj9wcz8wmwrf665ypqx181pz2ai3j";
|
|
|
|
|
};
|
|
|
|
|
armv7l-linux = {
|
|
|
|
|
version = "1.2.14";
|
|
|
|
|
system = "armhf-linux";
|
|
|
|
|
sha256 = "0sp5445rbvms6qvzhld0kwwvydw51vq5iaf4kdqsf2d9jvaz3yx5";
|
|
|
|
|
};
|
|
|
|
|
armv6l-linux = armv7l-linux;
|
|
|
|
|
x86_64-freebsd = {
|
|
|
|
|
version = "1.2.7";
|
|
|
|
|
system = "x86-64-freebsd";
|
|
|
|
|
sha256 = "14k42xiqd2rrim4pd5k5pjcrpkac09qnpynha8j1v4jngrvmw7y6";
|
|
|
|
|
};
|
|
|
|
|
x86_64-solaris = {
|
|
|
|
|
version = "1.2.7";
|
|
|
|
|
system = "x86-64-solaris";
|
|
|
|
|
sha256 = "05c12fmac4ha72k1ckl6i780rckd7jh4g5s5hiic7fjxnf1kx8d0";
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
sbclBootstrap = callPackage ./bootstrap.nix {
|
|
|
|
|
cfg = bootstrapBinaries.${stdenv.hostPlatform.system};
|
|
|
|
|
};
|
2024-02-29 20:09:43 +00:00
|
|
|
|
bootstrapLisp' =
|
|
|
|
|
if bootstrapLisp != null
|
|
|
|
|
then bootstrapLisp
|
|
|
|
|
else if (builtins.hasAttr stdenv.hostPlatform.system bootstrapBinaries)
|
2023-11-16 04:20:00 +00:00
|
|
|
|
then "${sbclBootstrap}/bin/sbcl --disable-debugger --no-userinit --no-sysinit"
|
2024-05-15 15:35:15 +00:00
|
|
|
|
else "${lib.getExe ecl} --norc";
|
2022-10-30 15:09:59 +00:00
|
|
|
|
|
2023-11-16 04:20:00 +00:00
|
|
|
|
in
|
2022-10-30 15:09:59 +00:00
|
|
|
|
|
2024-06-24 18:47:55 +00:00
|
|
|
|
stdenv.mkDerivation (self: {
|
2021-02-17 17:02:09 +00:00
|
|
|
|
pname = "sbcl";
|
|
|
|
|
inherit version;
|
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
2024-06-24 18:47:55 +00:00
|
|
|
|
# Changing the version shouldn’t change the source for the
|
|
|
|
|
# derivation. Override the src entirely if desired.
|
|
|
|
|
url = "mirror://sourceforge/project/sbcl/sbcl/${version}/sbcl-${version}-source.tar.bz2";
|
2023-11-16 04:20:00 +00:00
|
|
|
|
inherit (versionMap.${version}) sha256;
|
2021-02-17 17:02:09 +00:00
|
|
|
|
};
|
|
|
|
|
|
2024-02-29 20:09:43 +00:00
|
|
|
|
nativeBuildInputs = [
|
|
|
|
|
texinfo
|
|
|
|
|
] ++ lib.optionals self.doCheck (
|
|
|
|
|
[
|
|
|
|
|
which
|
|
|
|
|
] ++ lib.optionals (builtins.elem stdenv.system strace.meta.platforms) [
|
|
|
|
|
strace
|
|
|
|
|
]
|
|
|
|
|
);
|
2024-06-24 18:47:55 +00:00
|
|
|
|
buildInputs = lib.optionals self.coreCompression (
|
2024-04-21 15:54:59 +00:00
|
|
|
|
# Declare at the point of actual use in case the caller wants to override
|
|
|
|
|
# buildInputs to sidestep this.
|
2024-06-24 18:47:55 +00:00
|
|
|
|
assert lib.assertMsg (!self.purgeNixReferences) ''
|
2024-04-21 15:54:59 +00:00
|
|
|
|
Cannot enable coreCompression when purging Nix references, because compression requires linking in zstd
|
|
|
|
|
'';
|
|
|
|
|
[ zstd ]
|
|
|
|
|
);
|
2024-01-13 08:15:51 +00:00
|
|
|
|
|
2024-06-24 18:47:55 +00:00
|
|
|
|
threadSupport = (stdenv.hostPlatform.isx86 || "aarch64-linux" == stdenv.hostPlatform.system || "aarch64-darwin" == stdenv.hostPlatform.system);
|
|
|
|
|
# Meant for sbcl used for creating binaries portable to non-NixOS via save-lisp-and-die.
|
|
|
|
|
# Note that the created binaries still need `patchelf --set-interpreter ...`
|
|
|
|
|
# to get rid of ${glibc} dependency.
|
|
|
|
|
purgeNixReferences = false;
|
|
|
|
|
coreCompression = true;
|
|
|
|
|
markRegionGC = self.threadSupport;
|
|
|
|
|
disableImmobileSpace = false;
|
|
|
|
|
linkableRuntime = stdenv.hostPlatform.isx86;
|
|
|
|
|
|
2024-02-29 20:09:43 +00:00
|
|
|
|
# I don’t know why these are failing (on ofBorg), and I’d rather just disable
|
|
|
|
|
# them and move forward with the succeeding tests than block testing
|
|
|
|
|
# altogether. One by one hopefully we can fix these (on ofBorg,
|
|
|
|
|
# upstream--somehow some way) in due time.
|
|
|
|
|
disabledTestFiles = lib.optionals (builtins.elem stdenv.hostPlatform.system [
|
|
|
|
|
"x86_64-linux"
|
|
|
|
|
"aarch64-linux"
|
|
|
|
|
]) [
|
|
|
|
|
"foreign-stack-alignment.impure.lisp"
|
|
|
|
|
# Floating point tests are fragile
|
|
|
|
|
# https://sourceforge.net/p/sbcl/mailman/message/58728554/
|
|
|
|
|
"compiler.pure.lisp"
|
|
|
|
|
"float.pure.lisp"
|
|
|
|
|
] ++ lib.optionals (stdenv.hostPlatform.system == "aarch64-linux") [
|
|
|
|
|
# This is failing on aarch64-linux on ofBorg. Not on my local machine nor on
|
|
|
|
|
# a VM on my laptop. Not sure what’s wrong.
|
|
|
|
|
"traceroot.impure.lisp"
|
2024-04-21 15:54:59 +00:00
|
|
|
|
# Heisentest, sometimes fails on ofBorg, would rather just disable it than
|
|
|
|
|
# have it block a release.
|
|
|
|
|
"futex-wait.test.sh"
|
2024-02-29 20:09:43 +00:00
|
|
|
|
];
|
2024-05-15 15:35:15 +00:00
|
|
|
|
patches = [
|
|
|
|
|
# Support the NIX_SBCL_DYNAMIC_SPACE_SIZE envvar. Upstream SBCL didn’t want
|
|
|
|
|
# to include this (see
|
|
|
|
|
# "https://sourceforge.net/p/sbcl/mailman/sbcl-devel/thread/2cf20df7-01d0-44f2-8551-0df01fe55f1a%400brg.net/"),
|
|
|
|
|
# but for Nix envvars are sufficiently useful that it’s worth maintaining
|
|
|
|
|
# this functionality downstream.
|
|
|
|
|
./dynamic-space-size-envvar-feature.patch
|
|
|
|
|
./dynamic-space-size-envvar-tests.patch
|
|
|
|
|
];
|
2024-02-29 20:09:43 +00:00
|
|
|
|
postPatch = lib.optionalString (self.disabledTestFiles != [ ]) ''
|
|
|
|
|
(cd tests ; rm -f ${lib.concatStringsSep " " self.disabledTestFiles})
|
2021-02-17 17:02:09 +00:00
|
|
|
|
''
|
2024-06-24 18:47:55 +00:00
|
|
|
|
+ lib.optionalString self.purgeNixReferences ''
|
2024-02-29 20:09:43 +00:00
|
|
|
|
# This is the default location to look for the core; by default in $out/lib/sbcl
|
|
|
|
|
sed 's@^\(#define SBCL_HOME\) .*$@\1 "/no-such-path"@' \
|
|
|
|
|
-i src/runtime/runtime.c
|
|
|
|
|
''
|
|
|
|
|
+ ''
|
|
|
|
|
(
|
|
|
|
|
shopt -s nullglob
|
|
|
|
|
# Tests need patching regardless of purging of paths from the final
|
|
|
|
|
# binary. There are some tricky files in nested directories which should
|
|
|
|
|
# definitely NOT be patched this way, hence just a single * (and no
|
|
|
|
|
# globstar).
|
2024-06-24 18:47:55 +00:00
|
|
|
|
substituteInPlace ${if self.purgeNixReferences then "tests" else "{tests,src/code}"}/*.{lisp,sh} \
|
2024-02-29 20:09:43 +00:00
|
|
|
|
--replace-quiet /usr/bin/env "${coreutils}/bin/env" \
|
|
|
|
|
--replace-quiet /bin/uname "${coreutils}/bin/uname" \
|
|
|
|
|
--replace-quiet /bin/sh "${stdenv.shell}"
|
|
|
|
|
)
|
2024-04-21 15:54:59 +00:00
|
|
|
|
# Official source release tarballs will have a version.lispexpr, but if you
|
|
|
|
|
# want to override { src = ... } it might not exist. It’s required for
|
|
|
|
|
# building, so create a mock version as a backup.
|
|
|
|
|
if [[ ! -a version.lisp-expr ]]; then
|
2024-06-24 18:47:55 +00:00
|
|
|
|
echo '"${self.version}.nixos"' > version.lisp-expr
|
2024-04-21 15:54:59 +00:00
|
|
|
|
fi
|
2024-02-29 20:09:43 +00:00
|
|
|
|
'';
|
2021-02-17 17:02:09 +00:00
|
|
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
|
export INSTALL_ROOT=$out
|
|
|
|
|
mkdir -p test-home
|
|
|
|
|
export HOME=$PWD/test-home
|
|
|
|
|
'';
|
|
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
|
enableFeatures =
|
|
|
|
|
assert lib.assertMsg (self.markRegionGC -> self.threadSupport) "SBCL mark region GC requires thread support";
|
|
|
|
|
lib.optional self.threadSupport "sb-thread" ++
|
|
|
|
|
lib.optional self.linkableRuntime "sb-linkable-runtime" ++
|
|
|
|
|
lib.optional self.coreCompression "sb-core-compression" ++
|
2024-09-26 11:04:55 +00:00
|
|
|
|
lib.optional stdenv.hostPlatform.isAarch32 "arm" ++
|
2024-09-19 14:19:46 +00:00
|
|
|
|
lib.optional self.markRegionGC "mark-region-gc";
|
2021-02-17 17:02:09 +00:00
|
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
|
disableFeatures =
|
|
|
|
|
lib.optional (!self.threadSupport) "sb-thread" ++
|
|
|
|
|
lib.optionals self.disableImmobileSpace [ "immobile-space" "immobile-code" "compact-instance-header" ];
|
2021-02-17 17:02:09 +00:00
|
|
|
|
|
2024-02-29 20:09:43 +00:00
|
|
|
|
buildArgs = [
|
|
|
|
|
"--prefix=$out"
|
|
|
|
|
"--xc-host=${lib.escapeShellArg bootstrapLisp'}"
|
|
|
|
|
] ++ builtins.map (x: "--with-${x}") self.enableFeatures
|
|
|
|
|
++ builtins.map (x: "--without-${x}") self.disableFeatures
|
|
|
|
|
++ lib.optionals (stdenv.hostPlatform.system == "aarch64-darwin") [
|
|
|
|
|
"--arch=arm64"
|
|
|
|
|
];
|
|
|
|
|
|
2024-05-15 15:35:15 +00:00
|
|
|
|
# Fails to find `O_LARGEFILE` otherwise.
|
|
|
|
|
env.NIX_CFLAGS_COMPILE = "-D_GNU_SOURCE";
|
2022-08-12 12:06:08 +00:00
|
|
|
|
|
2021-02-17 17:02:09 +00:00
|
|
|
|
buildPhase = ''
|
2021-03-09 03:18:52 +00:00
|
|
|
|
runHook preBuild
|
|
|
|
|
|
2024-02-29 20:09:43 +00:00
|
|
|
|
sh make.sh ${lib.concatStringsSep " " self.buildArgs}
|
2021-02-17 17:02:09 +00:00
|
|
|
|
(cd doc/manual ; make info)
|
2021-03-09 03:18:52 +00:00
|
|
|
|
|
|
|
|
|
runHook postBuild
|
2021-02-17 17:02:09 +00:00
|
|
|
|
'';
|
|
|
|
|
|
2024-02-29 20:09:43 +00:00
|
|
|
|
# Tests on ofBorg’s x86_64-darwin platforms are so unstable that a random one
|
|
|
|
|
# will fail every other run. There’s a deeper problem here; we might as well
|
|
|
|
|
# disable them entirely so at least the other platforms get to benefit from
|
|
|
|
|
# testing.
|
|
|
|
|
doCheck = stdenv.hostPlatform.system != "x86_64-darwin";
|
|
|
|
|
|
|
|
|
|
# From the INSTALL docs
|
|
|
|
|
checkPhase = ''
|
|
|
|
|
runHook preCheck
|
|
|
|
|
|
|
|
|
|
(cd tests && sh run-tests.sh)
|
|
|
|
|
|
|
|
|
|
runHook postCheck
|
|
|
|
|
'';
|
|
|
|
|
|
2021-02-17 17:02:09 +00:00
|
|
|
|
installPhase = ''
|
2021-03-09 03:18:52 +00:00
|
|
|
|
runHook preInstall
|
|
|
|
|
|
2021-02-17 17:02:09 +00:00
|
|
|
|
INSTALL_ROOT=$out sh install.sh
|
2021-03-09 03:18:52 +00:00
|
|
|
|
|
2021-02-17 17:02:09 +00:00
|
|
|
|
''
|
2024-06-24 18:47:55 +00:00
|
|
|
|
+ lib.optionalString (!self.purgeNixReferences) ''
|
2021-02-17 17:02:09 +00:00
|
|
|
|
cp -r src $out/lib/sbcl
|
|
|
|
|
cp -r contrib $out/lib/sbcl
|
|
|
|
|
cat >$out/lib/sbcl/sbclrc <<EOF
|
|
|
|
|
(setf (logical-pathname-translations "SYS")
|
|
|
|
|
'(("SYS:SRC;**;*.*.*" #P"$out/lib/sbcl/src/**/*.*")
|
|
|
|
|
("SYS:CONTRIB;**;*.*.*" #P"$out/lib/sbcl/contrib/**/*.*")))
|
|
|
|
|
EOF
|
2024-02-29 20:09:43 +00:00
|
|
|
|
'' + ''
|
|
|
|
|
runHook postInstall
|
2021-02-17 17:02:09 +00:00
|
|
|
|
'';
|
|
|
|
|
|
2024-06-24 18:47:55 +00:00
|
|
|
|
setupHook = lib.optional self.purgeNixReferences (writeText "setupHook.sh" ''
|
2021-02-17 17:02:09 +00:00
|
|
|
|
addEnvHooks "$targetOffset" _setSbclHome
|
|
|
|
|
_setSbclHome() {
|
|
|
|
|
export SBCL_HOME='@out@/lib/sbcl/'
|
|
|
|
|
}
|
|
|
|
|
'');
|
|
|
|
|
|
2023-11-16 04:20:00 +00:00
|
|
|
|
meta = with lib; {
|
2024-02-29 20:09:43 +00:00
|
|
|
|
description = "Common Lisp compiler";
|
2023-11-16 04:20:00 +00:00
|
|
|
|
homepage = "https://sbcl.org";
|
|
|
|
|
license = licenses.publicDomain; # and FreeBSD
|
2024-04-21 15:54:59 +00:00
|
|
|
|
mainProgram = "sbcl";
|
2023-11-16 04:20:00 +00:00
|
|
|
|
maintainers = lib.teams.lisp.members;
|
|
|
|
|
platforms = attrNames bootstrapBinaries ++ [
|
|
|
|
|
# These aren’t bootstrapped using the binary distribution but compiled
|
|
|
|
|
# using a separate (lisp) host
|
2024-05-15 15:35:15 +00:00
|
|
|
|
"x86_64-darwin"
|
2023-11-16 04:20:00 +00:00
|
|
|
|
"x86_64-linux"
|
|
|
|
|
"aarch64-darwin"
|
|
|
|
|
"aarch64-linux"
|
|
|
|
|
];
|
|
|
|
|
};
|
2024-02-29 20:09:43 +00:00
|
|
|
|
})
|