2017-11-09 11:59:59 +01:00
|
|
|
{ stdenv, fetchsvn, fetchpatch, gcc, glibc, m4, coreutils }:
|
2014-11-27 23:48:07 +01:00
|
|
|
|
2015-09-27 22:40:05 +02:00
|
|
|
let
|
|
|
|
options = rec {
|
2015-10-01 11:20:24 +02:00
|
|
|
/* TODO: there are also MacOS, FreeBSD and Windows versions */
|
2015-09-27 22:40:05 +02:00
|
|
|
x86_64-linux = {
|
|
|
|
arch = "linuxx86";
|
2016-08-23 18:28:23 +02:00
|
|
|
sha256 = "0g6mkl207ri3ib9w85i9w0sv7srz784pbxidz0d95p6qkvg6shba";
|
2015-09-27 22:40:05 +02:00
|
|
|
runtime = "lx86cl64";
|
|
|
|
kernel = "linuxx8664";
|
|
|
|
};
|
|
|
|
i686-linux = {
|
|
|
|
arch = "linuxx86";
|
|
|
|
sha256 = x86_64-linux.sha256;
|
|
|
|
runtime = "lx86cl";
|
|
|
|
kernel = "linuxx8632";
|
|
|
|
};
|
|
|
|
armv7l-linux = {
|
|
|
|
arch = "linuxarm";
|
2016-01-13 23:50:22 +01:00
|
|
|
sha256 = "0k6wxwyg3pmbb5xdkwma0i3rvbjmy3p604g4minjjc1drzsn1i0q";
|
2015-09-27 22:40:05 +02:00
|
|
|
runtime = "armcl";
|
|
|
|
kernel = "linuxarm";
|
|
|
|
};
|
|
|
|
armv6l-linux = armv7l-linux;
|
|
|
|
};
|
|
|
|
cfg = options.${stdenv.system};
|
|
|
|
in
|
2015-10-01 11:20:24 +02:00
|
|
|
|
|
|
|
assert builtins.hasAttr stdenv.system options;
|
|
|
|
|
2014-11-27 23:48:07 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "ccl-${version}";
|
2016-01-13 23:50:22 +01:00
|
|
|
version = "1.11";
|
2014-11-27 23:48:07 +01:00
|
|
|
revision = "16313";
|
|
|
|
|
|
|
|
src = fetchsvn {
|
2015-09-27 22:40:05 +02:00
|
|
|
url = "http://svn.clozure.com/publicsvn/openmcl/release/${version}/${cfg.arch}/ccl";
|
2014-11-27 23:48:07 +01:00
|
|
|
rev = revision;
|
2015-09-27 22:40:05 +02:00
|
|
|
sha256 = cfg.sha256;
|
2010-02-24 10:04:29 +01:00
|
|
|
};
|
|
|
|
|
2017-11-09 11:59:59 +01:00
|
|
|
patches = fetchpatch {
|
|
|
|
name = "ccl-1.11-glibc-2.26.patch";
|
|
|
|
url = https://patch-diff.githubusercontent.com/raw/Clozure/ccl/pull/80.patch;
|
|
|
|
sha256 = "02v6287w0nppfpvkn9dyd5rvq2zkgd47ia9gs17hrww2hgzr6agd";
|
|
|
|
};
|
|
|
|
|
2014-11-27 23:48:07 +01:00
|
|
|
buildInputs = [ gcc glibc m4 ];
|
|
|
|
|
2015-09-27 22:40:05 +02:00
|
|
|
CCL_RUNTIME = cfg.runtime;
|
|
|
|
CCL_KERNEL = cfg.kernel;
|
2014-11-27 23:48:07 +01:00
|
|
|
|
2017-11-09 11:59:59 +01:00
|
|
|
postPatch = ''
|
2014-11-29 07:14:53 +01:00
|
|
|
substituteInPlace lisp-kernel/${CCL_KERNEL}/Makefile \
|
|
|
|
--replace "svnversion" "echo ${revision}" \
|
|
|
|
--replace "/bin/rm" "${coreutils}/bin/rm" \
|
|
|
|
--replace "/bin/echo" "${coreutils}/bin/echo"
|
|
|
|
|
|
|
|
substituteInPlace lisp-kernel/m4macros.m4 \
|
|
|
|
--replace "/bin/pwd" "${coreutils}/bin/pwd"
|
|
|
|
'';
|
2010-02-24 10:04:29 +01:00
|
|
|
|
2014-11-29 07:14:53 +01:00
|
|
|
buildPhase = ''
|
2014-11-27 23:48:07 +01:00
|
|
|
make -C lisp-kernel/${CCL_KERNEL} clean
|
|
|
|
make -C lisp-kernel/${CCL_KERNEL} all
|
|
|
|
|
|
|
|
./${CCL_RUNTIME} -n -b -e '(ccl:rebuild-ccl :full t)' -e '(ccl:quit)'
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p "$out/share"
|
2014-11-27 23:48:07 +01:00
|
|
|
cp -r . "$out/share/ccl-installation"
|
2010-02-24 10:04:29 +01:00
|
|
|
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p "$out/bin"
|
2014-11-27 23:48:07 +01:00
|
|
|
echo -e '#!/bin/sh\n'"$out/share/ccl-installation/${CCL_RUNTIME}"' "$@"\n' > "$out"/bin/"${CCL_RUNTIME}"
|
|
|
|
chmod a+x "$out"/bin/"${CCL_RUNTIME}"
|
2017-06-28 20:33:58 +02:00
|
|
|
ln -s "$out"/bin/"${CCL_RUNTIME}" "$out"/bin/ccl
|
2014-11-27 23:48:07 +01:00
|
|
|
'';
|
|
|
|
|
2015-10-01 11:20:24 +02:00
|
|
|
meta = with stdenv.lib; {
|
2010-02-24 10:04:29 +01:00
|
|
|
description = "Clozure Common Lisp";
|
2017-08-02 23:50:51 +02:00
|
|
|
homepage = https://ccl.clozure.com/;
|
2015-11-24 23:26:26 +01:00
|
|
|
maintainers = with maintainers; [ raskin muflax tohl ];
|
2015-10-01 11:20:24 +02:00
|
|
|
platforms = attrNames options;
|
|
|
|
license = licenses.lgpl21;
|
2010-02-24 10:04:29 +01:00
|
|
|
};
|
|
|
|
}
|