2014-10-17 08:26:36 -07:00
|
|
|
{ stdenv, fetchurl, makeWrapper, bootstrap-chicken ? null }:
|
2013-03-26 07:52:54 -07:00
|
|
|
|
2013-11-28 13:08:19 -08:00
|
|
|
let
|
2020-02-29 14:02:11 -08:00
|
|
|
version = "5.2.0";
|
2013-11-28 14:23:40 -08:00
|
|
|
platform = with stdenv;
|
2013-11-29 02:46:57 -08:00
|
|
|
if isDarwin then "macosx"
|
2013-11-28 14:23:40 -08:00
|
|
|
else if isCygwin then "cygwin"
|
2015-02-24 19:15:51 -08:00
|
|
|
else if (isFreeBSD || isOpenBSD) then "bsd"
|
2013-11-28 14:23:40 -08:00
|
|
|
else if isSunOS then "solaris"
|
2015-02-24 19:15:51 -08:00
|
|
|
else "linux"; # Should be a sane default
|
2014-10-09 11:49:15 -07:00
|
|
|
lib = stdenv.lib;
|
2013-11-28 13:08:19 -08:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
2019-08-13 14:52:01 -07:00
|
|
|
pname = "chicken";
|
|
|
|
inherit version;
|
2013-11-28 13:08:19 -08:00
|
|
|
|
2019-08-06 19:47:51 -07:00
|
|
|
binaryVersion = 11;
|
2014-10-09 11:49:15 -07:00
|
|
|
|
2014-06-02 09:15:44 -07:00
|
|
|
src = fetchurl {
|
2018-06-28 11:43:35 -07:00
|
|
|
url = "https://code.call-cc.org/releases/${version}/chicken-${version}.tar.gz";
|
2020-02-29 14:02:11 -08:00
|
|
|
sha256 = "1yl0hxm9cirgcp8jgxp6vv29lpswfvaw3zfkh6rsj0vkrv44k4c1";
|
2014-06-02 09:15:44 -07:00
|
|
|
};
|
2013-03-26 07:52:54 -07:00
|
|
|
|
2014-10-09 11:49:15 -07:00
|
|
|
setupHook = lib.ifEnable (bootstrap-chicken != null) ./setup-hook.sh;
|
2016-06-25 07:53:21 -07:00
|
|
|
|
2019-10-27 06:03:25 -07:00
|
|
|
buildFlags = [ "PLATFORM=${platform}" "PREFIX=$(out)" ];
|
|
|
|
installFlags = [ "PLATFORM=${platform}" "PREFIX=$(out)" ];
|
2013-11-28 13:08:19 -08:00
|
|
|
|
2014-10-17 08:26:36 -07:00
|
|
|
buildInputs = [
|
|
|
|
makeWrapper
|
|
|
|
] ++ (lib.ifEnable (bootstrap-chicken != null) [
|
2014-10-09 02:13:29 -07:00
|
|
|
bootstrap-chicken
|
2014-10-17 08:26:36 -07:00
|
|
|
]);
|
2014-10-09 02:13:29 -07:00
|
|
|
|
2014-10-17 08:26:36 -07:00
|
|
|
postInstall = ''
|
|
|
|
for f in $out/bin/*
|
|
|
|
do
|
|
|
|
wrapProgram $f \
|
2014-12-26 09:28:15 -08:00
|
|
|
--prefix PATH : ${stdenv.cc}/bin
|
2014-10-17 08:26:36 -07:00
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2014-10-09 11:49:15 -07:00
|
|
|
# TODO: Assert csi -R files -p '(pathname-file (repository-path))' == binaryVersion
|
|
|
|
|
2013-11-28 13:08:19 -08:00
|
|
|
meta = {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://www.call-cc.org/";
|
2014-12-20 15:00:35 -08:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
2020-05-09 02:25:07 -07:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ corngood ];
|
2018-03-13 15:00:52 -07:00
|
|
|
platforms = stdenv.lib.platforms.linux; # Maybe other non-darwin Unix
|
2013-11-28 13:08:19 -08:00
|
|
|
description = "A portable compiler for the Scheme programming language";
|
|
|
|
longDescription = ''
|
|
|
|
CHICKEN is a compiler for the Scheme programming language.
|
|
|
|
CHICKEN produces portable and efficient C, supports almost all
|
|
|
|
of the R5RS Scheme language standard, and includes many
|
2017-08-06 15:05:18 -07:00
|
|
|
enhancements and extensions. CHICKEN runs on Linux, macOS,
|
2013-11-28 13:08:19 -08:00
|
|
|
Windows, and many Unix flavours.
|
|
|
|
'';
|
|
|
|
};
|
2013-03-26 07:52:54 -07:00
|
|
|
}
|