a1d61e7367
The Chez build was failing, as usual, due to impurities. The build system refers to absolute paths for tools like `ln` or `true`, which was the real culprit here. Furthermore the build also 'helpfully' suppresses errors in these cases by piping to /dev/null, so you never see any errors at build time until it's too late (otherwise, you'd see failures to call /bin/ln or at ./configure time). This also re-enables parallel builds, as they should be safe from all my testing, I believe. Signed-off-by: Austin Seipp <aseipp@pobox.com>
60 lines
1.9 KiB
Nix
60 lines
1.9 KiB
Nix
{ stdenv, fetchgit, coreutils, ncurses, libX11 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "chez-scheme-${version}";
|
|
version = "9.4-${dver}";
|
|
dver = "20160501";
|
|
|
|
src = fetchgit {
|
|
url = "https://github.com/cisco/chezscheme.git";
|
|
rev = "8343b7172532a00d2d19914206fcf83c93798c80";
|
|
sha256 = "1jq55sdk468lckccfnqh0iv868bhw6yb9ba9bakqg2pfydb8r4qf";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
buildInputs = [ ncurses libX11 ];
|
|
|
|
/* Chez uses a strange default search path, which completely
|
|
** ignores the installation prefix for some reason, and instead
|
|
** defaults to {/usr,/usr/local,$HOME}/lib for finding the .boot
|
|
** file.
|
|
**
|
|
** Also, we patch out a very annoying 'feature' in ./configure, too,
|
|
** which tries to use 'git' to update submodules.
|
|
**
|
|
** Finally, we have to also fix a few occurrences to tools with
|
|
** absolute paths in some helper scripts, otherwise the build will
|
|
** fail on NixOS or in any chroot build.
|
|
*/
|
|
patchPhase = ''
|
|
substituteInPlace ./c/scheme.c \
|
|
--replace "/usr/lib/csv" "$out/lib/csv"
|
|
|
|
substituteInPlace ./configure \
|
|
--replace "git submodule init && git submodule update || exit 1" ""
|
|
|
|
substituteInPlace ./workarea \
|
|
--replace "/bin/ln" "${coreutils}/bin/ln"
|
|
|
|
substituteInPlace ./makefiles/installsh \
|
|
--replace "/usr/bin/true" "${coreutils}/bin/true"
|
|
'';
|
|
|
|
/* Don't use configureFlags, since that just implicitly appends
|
|
** everything onto a --prefix flag, which ./configure gets very angry
|
|
** about.
|
|
*/
|
|
configurePhase = ''
|
|
./configure --threads --installprefix=$out --installman=$out/share/man
|
|
'';
|
|
|
|
meta = {
|
|
description = "A powerful and incredibly fast R6RS Scheme compiler";
|
|
homepage = "http://www.scheme.com";
|
|
license = stdenv.lib.licenses.asl20;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = with stdenv.lib.maintainers; [ thoughtpolice ];
|
|
};
|
|
}
|