2013-10-13 07:45:07 +01:00
|
|
|
{stdenv, fetchurl, asdf, lisp ? null}:
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "cl-wrapper-script";
|
|
|
|
|
|
|
|
buildPhase="";
|
|
|
|
|
|
|
|
installPhase=''
|
|
|
|
mkdir -p "$out"/bin
|
2016-03-25 09:34:51 +00:00
|
|
|
substituteAll ${./common-lisp.sh} "$out"/bin/common-lisp.sh
|
2014-11-14 12:28:54 +00:00
|
|
|
substituteAll "${./build-with-lisp.sh}" "$out/bin/build-with-lisp.sh"
|
2015-04-14 09:51:19 +01:00
|
|
|
substituteAll "${./cl-wrapper.sh}" "$out/bin/cl-wrapper.sh"
|
2013-10-13 07:45:07 +01:00
|
|
|
chmod a+x "$out"/bin/*
|
2017-03-31 21:46:32 +01:00
|
|
|
|
|
|
|
substituteAll "${./setup-hook.sh}" "setup-hook-parsed"
|
|
|
|
source setup-hook-parsed
|
|
|
|
setLisp "${lisp}"
|
|
|
|
echo "$NIX_LISP"
|
|
|
|
|
|
|
|
ASDF_OUTPUT_TRANSLATIONS="${asdf}/lib/common-lisp/:$out/lib/common-lisp-compiled/" \
|
2017-04-01 07:08:02 +01:00
|
|
|
NIX_LISP_PRELAUNCH_HOOK='nix_lisp_run_single_form "(progn
|
|
|
|
(uiop/lisp-build:compile-file* \"${asdf}/lib/common-lisp/asdf/build/asdf.lisp\")
|
|
|
|
(asdf:load-system :uiop :force :all)
|
|
|
|
(asdf:load-system :asdf :force :all)
|
|
|
|
)"' \
|
2017-03-31 21:46:32 +01:00
|
|
|
"$out/bin/common-lisp.sh" "$NIX_LISP"
|
2017-04-01 07:08:02 +01:00
|
|
|
|
|
|
|
ln -s "$out/lib/common-lisp-compiled"/{asdf/uiop,uiop}
|
2013-10-13 07:45:07 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
inherit asdf lisp;
|
2017-03-30 12:00:43 +01:00
|
|
|
stdenv_shell = stdenv.shell;
|
2013-10-13 07:45:07 +01:00
|
|
|
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
|
|
|
phases="installPhase fixupPhase";
|
|
|
|
|
2014-02-10 20:03:17 +00:00
|
|
|
preferLocalBuild = true;
|
|
|
|
|
2013-10-13 07:45:07 +01:00
|
|
|
passthru = {
|
2017-03-31 21:46:32 +01:00
|
|
|
inherit lisp asdf;
|
2013-10-13 07:45:07 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Script used to wrap Common Lisp implementations'';
|
|
|
|
maintainers = [stdenv.lib.maintainers.raskin];
|
|
|
|
};
|
|
|
|
}
|