gnu: Add cyclone.

* gnu/packages/scheme.scm (cyclone): New variable.

Change-Id: Icf3890ded917b728177c2831231e87b52d996532
This commit is contained in:
TakeV 2024-03-04 13:58:09 -05:00
parent 2d510059d5
commit d5fdc31b60
Signed by: TakeV
GPG Key ID: A64F41345C7400AF
1 changed files with 23 additions and 0 deletions

View File

@ -1310,3 +1310,26 @@ application.")
(description "Bootstrap the generate the cyclone scheme compiler")
(license expat)))
(define-public cyclone
(package
;; the bootstrapped compiler and final compiler share most build reqs
(inherit cyclone-bootstrap)
(name "cyclone")
(version "0.36.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/justinethier/cyclone.git")
(commit "v0.36.0")))
(file-name (git-file-name name version))
(sha256
(base32 "0qz5sdcnqkvw78gx86k3g1f0di5aqagdxqvzc35j50h1q5kj67z6"))))
(native-inputs (list cyclone-bootstrap))
(home-page "http://justinethier.github.io/cyclone/")
(synopsis "Fast R7RS scheme which compiles to C")
(description
"A brand-new compiler that allows practical application
development using R7RS Scheme. We provide modern features and a stable
system capable of generating fast native binaries.")
(license expat)))