2008-01-28 20:34:55 +01:00
|
|
|
args: with args;
|
2008-01-28 20:50:39 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2009-08-10 00:41:29 +02:00
|
|
|
v = "2.48";
|
2008-01-28 20:50:39 +01:00
|
|
|
name = "clisp-${v}";
|
2008-01-28 20:34:55 +01:00
|
|
|
src =
|
2007-08-10 20:54:44 +02:00
|
|
|
fetchurl {
|
2009-08-10 00:47:18 +02:00
|
|
|
url = "mirror://gnu/clisp/release/${v}/${name}.tar.bz2";
|
2009-08-10 00:41:29 +02:00
|
|
|
sha256 = "1hix1j7zhbn37ld46d6pi6agwxski893l1zwriwkd8jr11b3zf05";
|
2007-08-10 20:54:44 +02:00
|
|
|
};
|
2004-08-23 12:44:21 +02:00
|
|
|
|
2008-01-28 20:34:55 +01:00
|
|
|
inherit libsigsegv gettext coreutils;
|
|
|
|
buildInputs = [libsigsegv gettext ncurses readline libX11 libXau
|
2009-05-31 08:07:25 +02:00
|
|
|
libXt pcre zlib libXpm xproto libXext xextproto libffi
|
|
|
|
libffcall];
|
2008-03-11 21:58:29 +01:00
|
|
|
|
|
|
|
# First, replace port 9090 (rather low, can be used)
|
|
|
|
# with 64237 (much higher, IANA private area, not
|
|
|
|
# anything rememberable).
|
2008-01-28 20:50:39 +01:00
|
|
|
patchPhase = ''
|
2008-03-11 21:58:29 +01:00
|
|
|
sed -e 's@9090@64237@g' -i tests/socket.tst
|
2008-01-28 20:50:39 +01:00
|
|
|
sed -i 's@/bin/pwd@${coreutils}&@' src/clisp-link.in
|
|
|
|
find . -type f | xargs sed -e 's/-lICE/-lXau &/' -i
|
|
|
|
'';
|
|
|
|
|
|
|
|
configureFlags = "--with-readline builddir --with-dynamic-ffi
|
|
|
|
--with-module=clx/new-clx --with-module=i18n --with-module=bindings/glibc
|
|
|
|
--with-module=pcre --with-module=rawsock --with-module=readline
|
|
|
|
--with-module=syscalls --with-module=wildcard --with-module=zlib";
|
|
|
|
|
2009-05-31 08:07:25 +02:00
|
|
|
preBuild = ''
|
|
|
|
sed -e '/avcall.h/a\#include "config.h"' -i src/foreign.d
|
|
|
|
cd builddir
|
|
|
|
'';
|
2008-01-28 20:50:39 +01:00
|
|
|
|
|
|
|
NIX_CFLAGS_COMPILE="-O0";
|
|
|
|
|
|
|
|
# TODO : make mod-check fails
|
2010-02-17 07:43:49 +01:00
|
|
|
doCheck = false;
|
2008-01-28 20:50:39 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "ANSI Common Lisp Implementation";
|
|
|
|
homepage = http://clisp.cons.org;
|
2009-08-04 09:49:16 +02:00
|
|
|
maintainers = [stdenv.lib.maintainers.raskin];
|
2009-08-25 11:00:19 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2008-01-28 20:50:39 +01:00
|
|
|
};
|
2004-08-23 12:44:21 +02:00
|
|
|
}
|
2009-08-10 00:41:29 +02:00
|
|
|
|