2016-03-17 17:02:53 +00:00
|
|
|
{ stdenv, fetchurl, writeText, sbclBootstrap
|
|
|
|
, sbclBootstrapHost ? "${sbclBootstrap}/bin/sbcl --disable-debugger --no-userinit --no-sysinit"
|
2017-04-28 22:42:40 +01:00
|
|
|
, threadSupport ? (stdenv.isi686 || stdenv.isx86_64 || "aarch64-linux" == stdenv.system)
|
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
|
|
|
|
}:
|
2009-05-31 07:07:25 +01:00
|
|
|
|
2014-06-26 06:06:25 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "sbcl-${version}";
|
2017-04-28 22:41:05 +01:00
|
|
|
version = "1.3.17";
|
2009-05-31 07:07:25 +01:00
|
|
|
|
2014-06-26 06:06:25 +01:00
|
|
|
src = fetchurl {
|
2014-08-03 19:18:53 +01:00
|
|
|
url = "mirror://sourceforge/project/sbcl/sbcl/${version}/${name}-source.tar.bz2";
|
2017-04-28 22:41:05 +01:00
|
|
|
sha256 = "1bqd39cqcv129zxvp3w3z1x46m9g9nmgslnlrvcsbqwd69vgbfcl";
|
2014-06-26 06:06:25 +01:00
|
|
|
};
|
2013-02-24 17:20:57 +00:00
|
|
|
|
2014-06-26 06:06:25 +01:00
|
|
|
patchPhase = ''
|
|
|
|
echo '"${version}.nixos"' > version.lisp-expr
|
2009-06-03 08:07:01 +01:00
|
|
|
echo "
|
|
|
|
(lambda (features)
|
|
|
|
(flet ((enable (x)
|
|
|
|
(pushnew x features))
|
|
|
|
(disable (x)
|
|
|
|
(setf features (remove x features))))
|
2016-04-04 21:16:21 +01:00
|
|
|
''
|
2016-11-30 06:55:32 +00:00
|
|
|
+ (if threadSupport then "(enable :sb-thread)" else "(disable :sb-thread)")
|
2016-04-04 21:16:21 +01:00
|
|
|
+ stdenv.lib.optionalString stdenv.isArm "(enable :arm)"
|
|
|
|
+ ''
|
|
|
|
)) " > customize-target-features.lisp
|
2009-06-03 08:07:01 +01:00
|
|
|
|
2010-08-02 20:02:47 +01:00
|
|
|
pwd
|
2009-08-10 08:14:28 +01:00
|
|
|
|
2014-06-26 06:06:25 +01:00
|
|
|
# SBCL checks whether files are up-to-date in many places..
|
|
|
|
# Unfortunately, same timestamp is not good enough
|
2009-06-03 08:07:01 +01:00
|
|
|
sed -e 's@> x y@>= x y@' -i contrib/sb-aclrepl/repl.lisp
|
2009-07-07 15:50:37 +01:00
|
|
|
sed -e '/(date)/i((= date 2208988801) 2208988800)' -i contrib/asdf/asdf.lisp
|
|
|
|
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 08:07:01 +01:00
|
|
|
|
2014-06-26 06:06:25 +01:00
|
|
|
# Fix the tests
|
2010-02-17 08:24:02 +00:00
|
|
|
sed -e '/deftest pwent/inil' -i contrib/sb-posix/posix-tests.lisp
|
|
|
|
sed -e '/deftest grent/inil' -i contrib/sb-posix/posix-tests.lisp
|
|
|
|
sed -e '/deftest .*ent.non-existing/,+5d' -i contrib/sb-posix/posix-tests.lisp
|
|
|
|
sed -e '/deftest \(pw\|gr\)ent/,+3d' -i contrib/sb-posix/posix-tests.lisp
|
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
|
|
|
|
''
|
|
|
|
sed -e "s@/bin/uname@$(command -v uname)@g" -i src/code/*-os.lisp
|
|
|
|
''
|
|
|
|
);
|
|
|
|
|
2014-06-26 06:06:25 +01:00
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
export INSTALL_ROOT=$out
|
2014-07-22 10:01:32 +01:00
|
|
|
mkdir -p test-home
|
2014-06-26 06:06:25 +01:00
|
|
|
export HOME=$PWD/test-home
|
|
|
|
'';
|
2009-05-31 07:07:25 +01:00
|
|
|
|
2015-09-27 22:35:34 +01:00
|
|
|
buildPhase = ''
|
2015-11-30 21:33:44 +00:00
|
|
|
sh make.sh --prefix=$out --xc-host="${sbclBootstrapHost}"
|
2015-09-27 22:35:34 +01:00
|
|
|
'';
|
2009-05-31 07:07:25 +01:00
|
|
|
|
2014-06-26 06:06:25 +01:00
|
|
|
installPhase = ''
|
|
|
|
INSTALL_ROOT=$out sh install.sh
|
|
|
|
'';
|
2009-05-31 07:07:25 +01:00
|
|
|
|
2016-03-17 17:02:53 +00:00
|
|
|
# Specifying $SBCL_HOME is only truly needed with `purgeNixReferences = true`.
|
|
|
|
setupHook = writeText "setupHook.sh" ''
|
|
|
|
envHooks+=(_setSbclHome)
|
|
|
|
_setSbclHome() {
|
|
|
|
export SBCL_HOME='@out@/lib/sbcl/'
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
|
2015-10-01 10:20:24 +01:00
|
|
|
meta = sbclBootstrap.meta // {
|
2014-08-03 19:18:53 +01:00
|
|
|
inherit version;
|
|
|
|
updateWalker = true;
|
2009-05-31 07:07:25 +01:00
|
|
|
};
|
|
|
|
}
|