about summary refs log tree commit diff
path: root/pkgs/development/interpreters/clisp/default.nix
blob: a6e462753daae9489b14ace486c229a5fc71a497 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
args: with args;
stdenv.mkDerivation rec {
  v = "2.48";
  name = "clisp-${v}";
  src =
	fetchurl {
		url = "mirror://gnu/clisp/release/${v}/${name}.tar.bz2";
		sha256 = "1hix1j7zhbn37ld46d6pi6agwxski893l1zwriwkd8jr11b3zf05";
	};

  inherit libsigsegv gettext coreutils;
  buildInputs = [libsigsegv gettext ncurses readline libX11 libXau
	libXt pcre zlib libXpm xproto libXext xextproto libffi
	libffcall];
 
  # First, replace port 9090 (rather low, can be used)
  # with 64237 (much higher, IANA private area, not
  # anything rememberable).
  patchPhase = ''
  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
  '';

  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";

  preBuild = ''
    sed -e '/avcall.h/a\#include "config.h"' -i src/foreign.d
    cd builddir
  '';

  NIX_CFLAGS_COMPILE="-O0";

  # TODO : make mod-check fails
  doCheck = false;

  meta = {
	  description = "ANSI Common Lisp Implementation";
	  homepage = http://clisp.cons.org;
	  maintainers = [stdenv.lib.maintainers.raskin];
	  platforms = stdenv.lib.platforms.linux;
  };
}