2010-07-28 17:35:01 +02:00
|
|
|
{ stdenv, fetchurl, libsigsegv, gettext, ncurses, readline, libX11
|
|
|
|
, libXau, libXt, pcre, zlib, libXpm, xproto, libXext, xextproto
|
2011-01-21 20:15:10 +01:00
|
|
|
, libffi, libffcall, coreutils}:
|
2010-07-28 17:35:01 +02:00
|
|
|
|
2008-01-28 20:50:39 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2010-11-10 18:55:43 +01:00
|
|
|
v = "2.49";
|
2008-01-28 20:50:39 +01:00
|
|
|
name = "clisp-${v}";
|
2010-07-28 17:35:01 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/clisp/release/${v}/${name}.tar.bz2";
|
2010-11-10 18:55:43 +01:00
|
|
|
sha256 = "8132ff353afaa70e6b19367a25ae3d5a43627279c25647c220641fed00f8e890";
|
2010-07-28 17:35:01 +02:00
|
|
|
};
|
2004-08-23 12:44:21 +02:00
|
|
|
|
2008-01-28 20:34:55 +01:00
|
|
|
inherit libsigsegv gettext coreutils;
|
2010-07-28 17:35:01 +02:00
|
|
|
|
|
|
|
buildInputs =
|
|
|
|
[ libsigsegv gettext ncurses readline libX11 libXau
|
|
|
|
libXt pcre zlib libXpm xproto libXext xextproto libffi
|
|
|
|
libffcall
|
|
|
|
];
|
2013-02-05 15:23:09 +01:00
|
|
|
|
|
|
|
patches = [ ./bits_ipctypes_to_sys_ipc.patch ]; # from Gentoo
|
|
|
|
|
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).
|
2013-02-05 15:23:09 +01:00
|
|
|
# Also remove reference to a type that disappeared from recent glibc
|
|
|
|
# (seems the correct thing to do, found no reference to any solution)
|
|
|
|
postPatch = ''
|
2010-07-28 17:35:01 +02:00
|
|
|
sed -e 's@9090@64237@g' -i tests/socket.tst
|
|
|
|
sed -i 's@/bin/pwd@${coreutils}&@' src/clisp-link.in
|
|
|
|
find . -type f | xargs sed -e 's/-lICE/-lXau &/' -i
|
2013-02-05 15:23:09 +01:00
|
|
|
|
|
|
|
substituteInPlace modules/bindings/glibc/linux.lisp --replace "(def-c-type __swblk_t)" ""
|
2008-01-28 20:50:39 +01:00
|
|
|
'';
|
|
|
|
|
2010-07-28 17:35:01 +02:00
|
|
|
configureFlags =
|
|
|
|
''
|
2011-01-21 20:15:10 +01:00
|
|
|
--with-readline builddir --with-dynamic-ffi --with-ffcall
|
2010-07-28 17:35:01 +02:00
|
|
|
--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
|
2012-10-14 20:28:49 +02:00
|
|
|
--with-threads=POSIX_THREADS
|
2010-07-28 17:35:01 +02:00
|
|
|
'';
|
2008-01-28 20:50:39 +01:00
|
|
|
|
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 = {
|
2010-07-28 17:35:01 +02:00
|
|
|
description = "ANSI Common Lisp Implementation";
|
|
|
|
homepage = http://clisp.cons.org;
|
|
|
|
maintainers = [stdenv.lib.maintainers.raskin];
|
|
|
|
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
|
|
|
|