aboutsummaryrefslogtreecommitdiff
path: root/gn/packages/lisp.scm
diff options
context:
space:
mode:
authorjgart2022-01-26 03:33:59 -0500
committerjgart2022-01-26 03:36:29 -0500
commitdcdd9ace2c42f6209be6b673b5895ebe8cf6222d (patch)
tree0923746001701a4f81479e769ab1d5ac67595f9a /gn/packages/lisp.scm
parent4de27bd44d9537c25d1cb914c04aef8402c67037 (diff)
downloadguix-bioinformatics-dcdd9ace2c42f6209be6b673b5895ebe8cf6222d.tar.gz
gn: packages: lisp: Add cl-meta.
Diffstat (limited to 'gn/packages/lisp.scm')
-rw-r--r--gn/packages/lisp.scm33
1 files changed, 33 insertions, 0 deletions
diff --git a/gn/packages/lisp.scm b/gn/packages/lisp.scm
index 7abffc9..2675fee 100644
--- a/gn/packages/lisp.scm
+++ b/gn/packages/lisp.scm
@@ -233,3 +233,36 @@ with the same arguments again, rather than re-doing the computation.")
(define-public ecl-fare-memoization
(sbcl-package->ecl-package sbcl-fare-memoization))
+(define-public sbcl-meta
+ (let ((commit "74faea662139fbbfb9c99341aaed989f5b0e9da3")
+ (revision "0"))
+ (package
+ (name "sbcl-meta")
+ (version "0.4.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://gitlab.common-lisp.net/frideau/meta")
+ (commit commit)))
+ (sha256
+ (base32 "08s53zj3mcx82kszp1bg2vsb4kydvkc70kj4hpq9h1l5a1wh44cy"))
+ (file-name (git-file-name name commit))))
+ (build-system asdf-build-system/sbcl)
+ (arguments
+ `(#:asd-files '("meta.asd")))
+ (inputs
+ (list sbcl-named-readtables))
+ (home-page "https://gitlab.common-lisp.net/frideau/meta")
+ (synopsis "Recursive-descent parser DSL for common-lisp")
+ (description
+"Recursive-descent parser DSL that is a simpler alternative to parser
+generators.")
+ (license license:bsd-3))))
+
+(define-public cl-meta
+ (sbcl-package->cl-source-package sbcl-meta))
+
+(define-public ecl-meta
+ (sbcl-package->ecl-package sbcl-meta))
+