2021-01-22 18:25:31 +07:00
|
|
|
{ lib, stdenv, fetchurl, makeWrapper, darwin, bootstrap-chicken ? null }:
|
2013-03-26 22:52:54 +08:00
|
|
|
|
2013-11-28 22:08:19 +01:00
|
|
|
let
|
2017-12-13 18:31:29 +13:00
|
|
|
version = "4.13.0";
|
2013-11-28 23:23:40 +01:00
|
|
|
platform = with stdenv;
|
2013-11-29 11:46:57 +01:00
|
|
|
if isDarwin then "macosx"
|
2013-11-28 23:23:40 +01:00
|
|
|
else if isCygwin then "cygwin"
|
2015-02-24 22:15:51 -05:00
|
|
|
else if (isFreeBSD || isOpenBSD) then "bsd"
|
2013-11-28 23:23:40 +01:00
|
|
|
else if isSunOS then "solaris"
|
2015-02-24 22:15:51 -05:00
|
|
|
else "linux"; # Should be a sane default
|
2013-11-28 22:08:19 +01:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
2019-08-13 21:52:01 +00:00
|
|
|
pname = "chicken";
|
|
|
|
inherit version;
|
2013-11-28 22:08:19 +01:00
|
|
|
|
2016-06-25 15:53:21 +01:00
|
|
|
binaryVersion = 8;
|
2014-10-09 20:49:15 +02:00
|
|
|
|
2014-06-02 18:15:44 +02:00
|
|
|
src = fetchurl {
|
2018-06-28 20:43:35 +02:00
|
|
|
url = "https://code.call-cc.org/releases/${version}/chicken-${version}.tar.gz";
|
2017-12-13 18:31:29 +13:00
|
|
|
sha256 = "0hvckhi5gfny3mlva6d7y9pmx7cbwvq0r7mk11k3sdiik9hlkmdd";
|
2014-06-02 18:15:44 +02:00
|
|
|
};
|
2013-03-26 22:52:54 +08:00
|
|
|
|
2020-11-15 06:11:56 -08:00
|
|
|
setupHook = lib.optional (bootstrap-chicken != null) ./setup-hook.sh;
|
2016-06-25 15:53:21 +01:00
|
|
|
|
2020-11-15 06:11:56 -08:00
|
|
|
# -fno-strict-overflow is not a supported argument in clang on darwin
|
|
|
|
hardeningDisable = lib.optionals stdenv.isDarwin ["strictoverflow"];
|
|
|
|
|
|
|
|
makeFlags = [
|
|
|
|
"PLATFORM=${platform}" "PREFIX=$(out)"
|
|
|
|
"VARDIR=$(out)/var/lib"
|
|
|
|
] ++ (lib.optionals stdenv.isDarwin [
|
|
|
|
"XCODE_TOOL_PATH=${darwin.binutils.bintools}/bin"
|
|
|
|
"C_COMPILER=$(CC)"
|
|
|
|
]);
|
2013-11-28 22:08:19 +01:00
|
|
|
|
2014-10-09 11:13:29 +02:00
|
|
|
# We need a bootstrap-chicken to regenerate the c-files after
|
|
|
|
# applying a patch to add support for CHICKEN_REPOSITORY_EXTRA
|
2020-11-15 06:11:56 -08:00
|
|
|
patches = lib.optionals (bootstrap-chicken != null) [
|
2014-10-09 11:13:29 +02:00
|
|
|
./0001-Introduce-CHICKEN_REPOSITORY_EXTRA.patch
|
|
|
|
];
|
|
|
|
|
2014-10-17 17:26:36 +02:00
|
|
|
buildInputs = [
|
|
|
|
makeWrapper
|
2020-11-15 06:11:56 -08:00
|
|
|
] ++ (lib.optionals (bootstrap-chicken != null) [
|
2014-10-09 11:13:29 +02:00
|
|
|
bootstrap-chicken
|
2014-10-17 17:26:36 +02:00
|
|
|
]);
|
2014-10-09 11:13:29 +02:00
|
|
|
|
2020-11-15 06:11:56 -08:00
|
|
|
preBuild = lib.optionalString (bootstrap-chicken != null) ''
|
2014-10-09 11:13:29 +02:00
|
|
|
# Backup the build* files - those are generated from hostname,
|
|
|
|
# git-tag, etc. and we don't need/want that
|
|
|
|
mkdir -p build-backup
|
|
|
|
mv buildid buildbranch buildtag.h build-backup
|
|
|
|
|
|
|
|
# Regenerate eval.c after the patch
|
2020-11-15 06:11:56 -08:00
|
|
|
make spotless $makeFlags
|
2014-10-09 11:13:29 +02:00
|
|
|
|
|
|
|
mv build-backup/* .
|
|
|
|
'';
|
|
|
|
|
2014-10-17 17:26:36 +02:00
|
|
|
postInstall = ''
|
|
|
|
for f in $out/bin/*
|
|
|
|
do
|
|
|
|
wrapProgram $f \
|
2014-12-26 12:28:15 -05:00
|
|
|
--prefix PATH : ${stdenv.cc}/bin
|
2014-10-17 17:26:36 +02:00
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2014-10-09 20:49:15 +02:00
|
|
|
# TODO: Assert csi -R files -p '(pathname-file (repository-path))' == binaryVersion
|
|
|
|
|
2013-11-28 22:08:19 +01:00
|
|
|
meta = {
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "http://www.call-cc.org/";
|
2021-01-22 18:25:31 +07:00
|
|
|
license = lib.licenses.bsd3;
|
|
|
|
maintainers = with lib.maintainers; [ corngood ];
|
|
|
|
platforms = lib.platforms.linux ++ lib.platforms.darwin; # Maybe other Unix
|
2013-11-28 22:08:19 +01: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-07 00:05:18 +02:00
|
|
|
enhancements and extensions. CHICKEN runs on Linux, macOS,
|
2013-11-28 22:08:19 +01:00
|
|
|
Windows, and many Unix flavours.
|
|
|
|
'';
|
|
|
|
};
|
2013-03-26 22:52:54 +08:00
|
|
|
}
|