2014-06-02 18:15:44 +02:00
|
|
|
{ stdenv, fetchurl }:
|
2013-03-26 15:52:54 +01:00
|
|
|
|
2013-11-28 22:08:19 +01:00
|
|
|
let
|
2014-06-19 12:04:20 +02:00
|
|
|
version = "4.9.0.1";
|
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"
|
|
|
|
else if isBSD then "bsd"
|
|
|
|
else if isSunOS then "solaris"
|
|
|
|
else "linux"; # Should be a sane default
|
2013-11-28 22:08:19 +01:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "chicken-${version}";
|
|
|
|
|
2014-06-02 18:15:44 +02:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://code.call-cc.org/releases/4.9.0/chicken-${version}.tar.gz";
|
2014-06-19 12:04:20 +02:00
|
|
|
sha256 = "0598mar1qswfd8hva9nqs88zjn02lzkqd8fzdd21dz1nki1prpq4";
|
2014-06-02 18:15:44 +02:00
|
|
|
};
|
2013-03-26 15:52:54 +01:00
|
|
|
|
2013-11-28 23:23:40 +01:00
|
|
|
buildFlags = "PLATFORM=${platform} PREFIX=$(out) VARDIR=$(out)/var/lib";
|
|
|
|
installFlags = "PLATFORM=${platform} PREFIX=$(out) VARDIR=$(out)/var/lib";
|
2013-11-28 22:08:19 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.call-cc.org/;
|
|
|
|
license = "BSD";
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
|
2014-08-09 12:28:16 +02:00
|
|
|
platforms = with stdenv.lib.platforms; allBut darwin;
|
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
|
|
|
|
enhancements and extensions. CHICKEN runs on Linux, MacOS X,
|
|
|
|
Windows, and many Unix flavours.
|
|
|
|
'';
|
|
|
|
};
|
2013-03-26 15:52:54 +01:00
|
|
|
}
|