diff options
author | Katherine Cox-Buday <cox.katherine.e@gmail.com> | 2019-03-29 15:12:18 -0500 |
---|---|---|
committer | 宋文武 <iyzsong@member.fsf.org> | 2019-04-07 11:23:14 +0800 |
commit | 85d1c70573dc431314e2c39eba849f6b52429b97 (patch) | |
tree | 4a090e2fdf8fd8d7c88862d36327c8f270669de4 | |
parent | 47a8aaa810c0adc7a1e344c5ba0789337232fde9 (diff) |
gnu: Add cl-syntax.
* gnu/packages/lisp.scm (sbcl-syntax, cl-syntax): New variables.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
-rw-r--r-- | gnu/packages/lisp.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 39adb6e054..20d0d45acd 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -4225,3 +4225,30 @@ PROPER-LIST, ASSOCIATION-LIST, PROPERTY-LIST and TUPLE.") (define-public cl-trivial-types (sbcl-package->cl-source-package sbcl-trivial-types)) + +(define-public sbcl-syntax + (package + (name "sbcl-syntax") + (version "0.0.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/m2ym/cl-syntax.git") + (commit "03f0c329bbd55b8622c37161e6278366525e2ccc"))) + (sha256 + (base32 "17ran8xp77asagl31xv8w819wafh6whwfc9p6dgx22ca537gyl4y")))) + (build-system asdf-build-system/sbcl) + (arguments + '(#:asd-file "cl-syntax.asd" + #:asd-system-name "cl-syntax")) + (inputs `(("sbcl-trivial-types" ,sbcl-trivial-types) + ("sbcl-named-readtables" ,sbcl-named-readtables))) + (home-page "https://github.com/m2ym/cl-syntax") + (synopsis "Reader Syntax Coventions for Common Lisp and SLIME") + (description + "CL-SYNTAX provides Reader Syntax Coventions for Common Lisp and SLIME.") + (license license:llgpl))) + +(define-public cl-syntax + (sbcl-package->cl-source-package sbcl-syntax)) |