2019-01-29 21:26:14 +00:00
|
|
|
{ stdenv, fetchurl, writeText, sbclBootstrap
|
2016-03-17 17:02:53 +00:00
|
|
|
, sbclBootstrapHost ? "${sbclBootstrap}/bin/sbcl --disable-debugger --no-userinit --no-sysinit"
|
2018-08-20 19:11:29 +00:00
|
|
|
, threadSupport ? (stdenv.isi686 || stdenv.isx86_64 || "aarch64-linux" == stdenv.hostPlatform.system)
|
2020-05-30 09:01:56 +00:00
|
|
|
, disableImmobileSpace ? false
|
2016-03-17 17:02:53 +00:00
|
|
|
# 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
|
2018-10-31 21:33:28 +00:00
|
|
|
, texinfo
|
2016-03-17 17:02:53 +00:00
|
|
|
}:
|
2009-05-31 06:07:25 +00:00
|
|
|
|
2014-06-26 05:06:25 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "sbcl";
|
2020-03-11 21:21:39 +00:00
|
|
|
version = "2.0.2";
|
2009-05-31 06:07:25 +00:00
|
|
|
|
2017-12-01 19:43:11 +00:00
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "mirror://sourceforge/project/sbcl/sbcl/${version}/${pname}-${version}-source.tar.bz2";
|
2020-03-11 21:21:39 +00:00
|
|
|
sha256 = "07pyzdjnhcpqwvr3rrk4i18maqdywbq1qj93fnpx1h4b7dp08r28";
|
2014-06-26 05:06:25 +00:00
|
|
|
};
|
2013-02-24 17:20:57 +00:00
|
|
|
|
2018-10-31 21:33:28 +00:00
|
|
|
buildInputs = [texinfo];
|
|
|
|
|
2014-06-26 05:06:25 +00:00
|
|
|
patchPhase = ''
|
|
|
|
echo '"${version}.nixos"' > version.lisp-expr
|
2009-06-03 07:07:01 +00:00
|
|
|
|
2010-08-02 19:02:47 +00:00
|
|
|
pwd
|
2009-08-10 07:14:28 +00:00
|
|
|
|
2014-06-26 05:06:25 +00:00
|
|
|
# SBCL checks whether files are up-to-date in many places..
|
|
|
|
# Unfortunately, same timestamp is not good enough
|
2009-06-03 07:07:01 +00:00
|
|
|
sed -e 's@> x y@>= x y@' -i contrib/sb-aclrepl/repl.lisp
|
2017-11-05 14:25:54 +00:00
|
|
|
#sed -e '/(date)/i((= date 2208988801) 2208988800)' -i contrib/asdf/asdf.lisp
|
2009-07-07 14:50:37 +00:00
|
|
|
sed -i src/cold/slam.lisp -e \
|
|
|
|
'/file-write-date input/a)'
|
|
|
|
sed -i src/cold/slam.lisp -e \
|
|
|
|
'/file-write-date output/i(or (and (= 2208988801 (file-write-date output)) (= 2208988801 (file-write-date input)))'
|
|
|
|
sed -i src/code/target-load.lisp -e \
|
|
|
|
'/date defaulted-fasl/a)'
|
|
|
|
sed -i src/code/target-load.lisp -e \
|
|
|
|
'/date defaulted-source/i(or (and (= 2208988801 (file-write-date defaulted-source-truename)) (= 2208988801 (file-write-date defaulted-fasl-truename)))'
|
2009-06-03 07:07:01 +00:00
|
|
|
|
2014-06-26 05:06:25 +00:00
|
|
|
# Fix the tests
|
2010-02-17 10:40:25 +00:00
|
|
|
sed -e '5,$d' -i contrib/sb-bsd-sockets/tests.lisp
|
|
|
|
sed -e '5,$d' -i contrib/sb-simple-streams/*test*.lisp
|
2014-12-17 18:11:30 +00:00
|
|
|
|
|
|
|
# Use whatever `cc` the stdenv provides
|
|
|
|
substituteInPlace src/runtime/Config.x86-64-darwin --replace gcc cc
|
2015-02-12 20:14:35 +00:00
|
|
|
|
|
|
|
substituteInPlace src/runtime/Config.x86-64-darwin \
|
|
|
|
--replace mmacosx-version-min=10.4 mmacosx-version-min=10.5
|
2016-03-17 17:02:53 +00:00
|
|
|
''
|
|
|
|
+ (if purgeNixReferences
|
|
|
|
then
|
|
|
|
# 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
|
|
|
|
''
|
|
|
|
else
|
|
|
|
# Fix software version retrieval
|
|
|
|
''
|
2019-01-31 06:20:08 +00:00
|
|
|
sed -e "s@/bin/uname@$(command -v uname)@g" -i src/code/*-os.lisp \
|
|
|
|
src/code/run-program.lisp
|
2016-03-17 17:02:53 +00:00
|
|
|
''
|
|
|
|
);
|
|
|
|
|
2014-06-26 05:06:25 +00:00
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
export INSTALL_ROOT=$out
|
2014-07-22 09:01:32 +00:00
|
|
|
mkdir -p test-home
|
2014-06-26 05:06:25 +00:00
|
|
|
export HOME=$PWD/test-home
|
|
|
|
'';
|
2009-05-31 06:07:25 +00:00
|
|
|
|
2020-05-30 09:01:56 +00:00
|
|
|
enableFeatures = with stdenv.lib;
|
|
|
|
optional threadSupport "sb-thread" ++
|
|
|
|
optional stdenv.isAarch32 "arm";
|
|
|
|
|
|
|
|
disableFeatures = with stdenv.lib;
|
|
|
|
optional (!threadSupport) "sb-thread" ++
|
|
|
|
optionals disableImmobileSpace [ "immobile-space" "immobile-code" "compact-instance-header" ];
|
|
|
|
|
2015-09-27 21:35:34 +00:00
|
|
|
buildPhase = ''
|
2020-05-30 09:01:56 +00:00
|
|
|
sh make.sh --prefix=$out --xc-host="${sbclBootstrapHost}" ${
|
|
|
|
stdenv.lib.concatStringsSep " "
|
|
|
|
(builtins.map (x: "--with-${x}") enableFeatures ++
|
|
|
|
builtins.map (x: "--without-${x}") disableFeatures)
|
|
|
|
}
|
2018-10-31 21:33:28 +00:00
|
|
|
(cd doc/manual ; make info)
|
2015-09-27 21:35:34 +00:00
|
|
|
'';
|
2009-05-31 06:07:25 +00:00
|
|
|
|
2014-06-26 05:06:25 +00:00
|
|
|
installPhase = ''
|
|
|
|
INSTALL_ROOT=$out sh install.sh
|
2018-10-20 23:16:35 +00:00
|
|
|
''
|
|
|
|
+ stdenv.lib.optionalString (!purgeNixReferences) ''
|
|
|
|
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
|
2014-06-26 05:06:25 +00:00
|
|
|
'';
|
2009-05-31 06:07:25 +00:00
|
|
|
|
2018-10-20 23:19:34 +00:00
|
|
|
setupHook = stdenv.lib.optional purgeNixReferences (writeText "setupHook.sh" ''
|
2017-08-10 22:22:07 +00:00
|
|
|
addEnvHooks "$targetOffset" _setSbclHome
|
2016-03-17 17:02:53 +00:00
|
|
|
_setSbclHome() {
|
|
|
|
export SBCL_HOME='@out@/lib/sbcl/'
|
|
|
|
}
|
2018-10-20 23:19:34 +00:00
|
|
|
'');
|
2016-03-17 17:02:53 +00:00
|
|
|
|
2015-10-01 09:20:24 +00:00
|
|
|
meta = sbclBootstrap.meta // {
|
2014-08-03 18:18:53 +00:00
|
|
|
inherit version;
|
|
|
|
updateWalker = true;
|
2009-05-31 06:07:25 +00:00
|
|
|
};
|
|
|
|
}
|