88 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ stdenv, fetchsvn, fetchpatch, gcc, glibc, m4, coreutils }:
 | 
						|
 | 
						|
let
 | 
						|
  options = rec {
 | 
						|
    /* TODO: there are also MacOS, FreeBSD and Windows versions */
 | 
						|
    x86_64-linux = {
 | 
						|
      arch = "linuxx86";
 | 
						|
      sha256 = "0g6mkl207ri3ib9w85i9w0sv7srz784pbxidz0d95p6qkvg6shba";
 | 
						|
      runtime = "lx86cl64";
 | 
						|
      kernel = "linuxx8664";
 | 
						|
    };
 | 
						|
    i686-linux = {
 | 
						|
      arch = "linuxx86";
 | 
						|
      sha256 = x86_64-linux.sha256;
 | 
						|
      runtime = "lx86cl";
 | 
						|
      kernel = "linuxx8632";
 | 
						|
    };
 | 
						|
    armv7l-linux = {
 | 
						|
      arch = "linuxarm";
 | 
						|
      sha256 = "0k6wxwyg3pmbb5xdkwma0i3rvbjmy3p604g4minjjc1drzsn1i0q";
 | 
						|
      runtime = "armcl";
 | 
						|
      kernel = "linuxarm";
 | 
						|
    };
 | 
						|
    armv6l-linux = armv7l-linux;
 | 
						|
  };
 | 
						|
  cfg = options.${stdenv.system};
 | 
						|
in
 | 
						|
 | 
						|
assert builtins.hasAttr stdenv.system options;
 | 
						|
 | 
						|
stdenv.mkDerivation rec {
 | 
						|
  name     = "ccl-${version}";
 | 
						|
  version  = "1.11";
 | 
						|
  revision = "16313";
 | 
						|
 | 
						|
  src = fetchsvn {
 | 
						|
    url = "http://svn.clozure.com/publicsvn/openmcl/release/${version}/${cfg.arch}/ccl";
 | 
						|
    rev = revision;
 | 
						|
    sha256 = cfg.sha256;
 | 
						|
  };
 | 
						|
 | 
						|
  patches = fetchpatch {
 | 
						|
    name = "ccl-1.11-glibc-2.26.patch";
 | 
						|
    url = https://patch-diff.githubusercontent.com/raw/Clozure/ccl/pull/80.patch;
 | 
						|
    sha256 = "02v6287w0nppfpvkn9dyd5rvq2zkgd47ia9gs17hrww2hgzr6agd";
 | 
						|
  };
 | 
						|
 | 
						|
  buildInputs = [ gcc glibc m4 ];
 | 
						|
 | 
						|
  CCL_RUNTIME = cfg.runtime;
 | 
						|
  CCL_KERNEL = cfg.kernel;
 | 
						|
 | 
						|
  postPatch = ''
 | 
						|
    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"
 | 
						|
  '';
 | 
						|
 | 
						|
  buildPhase = ''
 | 
						|
    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 = ''
 | 
						|
    mkdir -p "$out/share"
 | 
						|
    cp -r .  "$out/share/ccl-installation"
 | 
						|
 | 
						|
    mkdir -p "$out/bin"
 | 
						|
    echo -e '#!/bin/sh\n'"$out/share/ccl-installation/${CCL_RUNTIME}"' "$@"\n' > "$out"/bin/"${CCL_RUNTIME}"
 | 
						|
    chmod a+x "$out"/bin/"${CCL_RUNTIME}"
 | 
						|
    ln -s "$out"/bin/"${CCL_RUNTIME}" "$out"/bin/ccl
 | 
						|
  '';
 | 
						|
 | 
						|
  meta = with stdenv.lib; {
 | 
						|
    description = "Clozure Common Lisp";
 | 
						|
    homepage    = https://ccl.clozure.com/;
 | 
						|
    maintainers = with maintainers; [ raskin muflax tohl ];
 | 
						|
    platforms   = attrNames options;
 | 
						|
    license     = licenses.lgpl21;
 | 
						|
  };
 | 
						|
}
 |