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