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
|
|
|
|
cp ${./cl-wrapper.sh} "$out"/bin/cl-wrapper.sh
|
|
|
|
cp ${./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"
|
2013-10-13 07:45:07 +01:00
|
|
|
chmod a+x "$out"/bin/*
|
|
|
|
'';
|
|
|
|
|
|
|
|
inherit asdf lisp;
|
|
|
|
|
|
|
|
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 = {
|
|
|
|
inherit lisp;
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Script used to wrap Common Lisp implementations'';
|
|
|
|
maintainers = [stdenv.lib.maintainers.raskin];
|
|
|
|
};
|
|
|
|
}
|