2009-05-31 08:07:25 +02:00
|
|
|
a :
|
|
|
|
let
|
|
|
|
fetchurl = a.fetchurl;
|
|
|
|
|
|
|
|
version = a.lib.attrByPath ["version"] "1.0.28" a;
|
|
|
|
buildInputs = with a; [
|
|
|
|
clisp makeWrapper
|
|
|
|
];
|
|
|
|
in
|
|
|
|
rec {
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://prdownloads.sourceforge.net/sbcl/sbcl-${version}-source.tar.bz2";
|
|
|
|
sha256 = "0jzi6zw73pll44fjllamiwvq5dihig2dcw3hl9h5a37948wnn0h4";
|
|
|
|
};
|
|
|
|
|
|
|
|
inherit buildInputs;
|
|
|
|
configureFlags = [];
|
|
|
|
|
|
|
|
/* doConfigure should be removed if not needed */
|
2009-06-03 09:07:01 +02:00
|
|
|
phaseNames = ["setVars" "doFixNewer" "doFixTests" "setVersion" "doBuild" "doInstall" "doWrap"];
|
2009-05-31 08:07:25 +02:00
|
|
|
|
|
|
|
setVars = a.fullDepEntry (''
|
|
|
|
export INSTALL_ROOT=$out
|
|
|
|
'') ["minInit"];
|
|
|
|
|
2009-06-03 09:07:01 +02:00
|
|
|
setVersion = a.fullDepEntry (''
|
|
|
|
echo '"${version}.nixos"' > version.lisp-expr
|
|
|
|
echo "
|
|
|
|
(lambda (features)
|
|
|
|
(flet ((enable (x)
|
|
|
|
(pushnew x features))
|
|
|
|
(disable (x)
|
|
|
|
(setf features (remove x features))))
|
|
|
|
(enable :sb-thread))) " > customize-target-features.lisp
|
|
|
|
'') ["minInit" "doUnpack"];
|
|
|
|
|
|
|
|
doFixNewer = a.fullDepEntry(''
|
|
|
|
sed -e 's@> x y@>= x y@' -i contrib/sb-aclrepl/repl.lisp
|
|
|
|
'') ["minInit" "doUnpack"];
|
|
|
|
|
2009-05-31 08:07:25 +02:00
|
|
|
doWrap = a.fullDepEntry (''
|
|
|
|
wrapProgram "$out/bin/sbcl" --set "SBCL_HOME" "$out/lib/sbcl"
|
|
|
|
'') ["minInit" "addInputs"];
|
|
|
|
|
|
|
|
doFixTests = a.fullDepEntry (''
|
|
|
|
sed -e 's/"sys"/"wheel"/' -i contrib/sb-posix/posix-tests.lisp
|
|
|
|
'') ["minInit" "doUnpack"];
|
|
|
|
|
|
|
|
doBuild = a.fullDepEntry (''
|
|
|
|
sh make.sh clisp
|
|
|
|
'') ["minInit" "doUnpack" "addInputs"];
|
|
|
|
|
|
|
|
doInstall = a.fullDepEntry (''
|
|
|
|
sh install.sh
|
|
|
|
'') ["doBuild" "minInit" "addInputs"];
|
|
|
|
|
|
|
|
name = "sbcl-" + version;
|
|
|
|
meta = {
|
|
|
|
description = "Lisp compiler";
|
|
|
|
};
|
|
|
|
}
|