* [PATCH] gnu: Add chibi.
@ 2015-02-16 21:27 Taylan Ulrich Bayırlı/Kammer
2015-02-17 0:44 ` Mark H Weaver
0 siblings, 1 reply; 2+ messages in thread
From: Taylan Ulrich Bayırlı/Kammer @ 2015-02-16 21:27 UTC (permalink / raw)
To: guix-devel
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: patch --]
[-- Type: text/x-diff, Size: 1991 bytes --]
From 63935e1d748ab468792a064c291c3677b3de1312 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Taylan=20Ulrich=20Bay=C4=B1rl=C4=B1/Kammer?=
<taylanbayirli@gmail.com>
Date: Mon, 16 Feb 2015 21:58:36 +0100
Subject: [PATCH] gnu: Add chibi.
* gnu/packages/scheme.scm (chibi): New variable.
---
gnu/packages/scheme.scm | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/gnu/packages/scheme.scm b/gnu/packages/scheme.scm
index b8466e5..b0fe374 100644
--- a/gnu/packages/scheme.scm
+++ b/gnu/packages/scheme.scm
@@ -474,3 +474,38 @@ loaded at run time. Interpreted code and compiled code can be freely
mixed.")
;; Dual license.
(license (list lgpl2.1+ asl2.0))))
+
+(define-public chibi
+ (package
+ (name "chibi")
+ (version "0.7.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "http://abrek.synthcode.com/chibi-scheme-" version ".tgz"))
+ (sha256
+ (base32 "0h6k2gdb4xk2pzhdipffcg2w3kfr4zh1va556k1hvng2did6prds"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:phases
+ (alist-delete
+ 'configure
+ (alist-cons-before
+ 'build 'set-cc
+ (lambda _
+ (setenv "CC" "gcc"))
+ %standard-phases))
+ #:make-flags (let ((out (assoc-ref %outputs "out")))
+ (list (string-append "PREFIX=" out)
+ (string-append "LDFLAGS=-Wl,-rpath=" out "/lib")))
+ #:test-target "test"))
+ (home-page "https://code.google.com/p/chibi-scheme/")
+ (synopsis "Small embeddable Scheme implementation")
+ (description
+ "Chibi-Scheme is a very small library with no external dependencies
+intended for use as an extension and scripting language in C programs. In
+addition to support for lightweight VM-based threads, each VM itself runs in
+an isolated heap allowing multiple VMs to run simultaneously in different OS
+threads.")
+ (license bsd-3)))
--
2.2.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] gnu: Add chibi.
2015-02-16 21:27 [PATCH] gnu: Add chibi Taylan Ulrich Bayırlı/Kammer
@ 2015-02-17 0:44 ` Mark H Weaver
0 siblings, 0 replies; 2+ messages in thread
From: Mark H Weaver @ 2015-02-17 0:44 UTC (permalink / raw)
To: Taylan Ulrich "Bayırlı/Kammer"; +Cc: guix-devel
taylanbayirli@gmail.com (Taylan Ulrich "Bayırlı/Kammer") writes:
> From 63935e1d748ab468792a064c291c3677b3de1312 Mon Sep 17 00:00:00 2001
> From: =?UTF-8?q?Taylan=20Ulrich=20Bay=C4=B1rl=C4=B1/Kammer?=
> <taylanbayirli@gmail.com>
> Date: Mon, 16 Feb 2015 21:58:36 +0100
> Subject: [PATCH] gnu: Add chibi.
>
> * gnu/packages/scheme.scm (chibi): New variable.
I think the name of the package and variable should be 'chibi-scheme',
but otherwise it looks good to me! Please push :)
Thanks,
Mark
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-02-17 0:44 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-16 21:27 [PATCH] gnu: Add chibi Taylan Ulrich Bayırlı/Kammer
2015-02-17 0:44 ` Mark H Weaver
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).