[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
31/67: gnu: Add let-plus.
From: |
Pierre Neidhardt |
Subject: |
31/67: gnu: Add let-plus. |
Date: |
Wed, 17 Oct 2018 04:20:17 -0400 (EDT) |
ambrevar pushed a commit to branch wip-next-browser2
in repository guix.
commit 035e6ab89bb1fed51263f4c3bafb8470c4c3182f
Author: Pierre Neidhardt <address@hidden>
Date: Mon Oct 1 15:29:54 2018 +0200
gnu: Add let-plus.
* gnu/packages/lisp.scm (cl-let-plus, ecl-let-plus, sbcl-let-plus): New
variables.
---
gnu/packages/lisp.scm | 41 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 41 insertions(+)
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index 90c1f4e..0a21863 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -2405,6 +2405,47 @@ supports randomized testing, benchmarking, profiling,
and reporting.")
(define-public ecl-lift
(sbcl-package->ecl-package sbcl-lift))
+(define-public sbcl-let-plus
+ (let ((commit "5f14af61d501ecead02ec6b5a5c810efc0c9fdbb"))
+ (package
+ (name "sbcl-let-plus")
+ (version (git-version "0.0.0" "1" commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/sharplispers/let-plus")
+ (commit commit)))
+ (sha256
+ (base32
+ "0i050ca2iys9f5mb7dgqgqdxfnc3b0rnjdwv95sqd490vkiwrsaj"))
+ (file-name (git-file-name "let-plus" version))))
+ (build-system asdf-build-system/sbcl)
+ (inputs
+ `(("alexandria" ,sbcl-alexandria)
+ ("anaphora" ,sbcl-anaphora)))
+ (native-inputs
+ `(("lift" ,sbcl-lift)))
+ (synopsis "Destructuring extension of let*")
+ (description
+ "This library implements the let+ macro, which is a dectructuring
+extension of let*. It features:
+
address@hidden
address@hidden Clean, consistent syntax and small implementation (less than 300
LOC, not counting tests)
address@hidden Placeholder macros allow editor hints and syntax highlighting
address@hidden @command{&ign} for ignored values (in forms where that makes
sense)
address@hidden Very easy to extend
address@hidden itemize\n")
+ (home-page "https://github.com/sharplispers/let-plus")
+ (license license:boost1.0))))
+
+(define-public cl-let-plus
+ (sbcl-package->cl-source-package sbcl-let-plus))
+
+(define-public ecl-let-plus
+ (sbcl-package->ecl-package sbcl-let-plus))
+
(define-public sbcl-ascii-strings
(let ((revision "1")
(changeset "5048480a61243e6f1b02884012c8f25cdbee6d97"))
- 21/67: gnu: Add pythonic-string-reader., (continued)
- 21/67: gnu: Add pythonic-string-reader., Pierre Neidhardt, 2018/10/17
- 28/67: gnu: Add lisp-unit., Pierre Neidhardt, 2018/10/17
- 27/67: slime-swank (FIX), Pierre Neidhardt, 2018/10/17
- 26/67: gnu: Add sbcl-slime-swank., Pierre Neidhardt, 2018/10/17
- 34/67: gnu: Add prove-asdf., Pierre Neidhardt, 2018/10/17
- 29/67: gnu: Add anaphora., Pierre Neidhardt, 2018/10/17
- 33/67: gnu: Add cl-ansi-text., Pierre Neidhardt, 2018/10/17
- 30/67: gnu: Add lift., Pierre Neidhardt, 2018/10/17
- 25/67: mgl-pax (FIX), Pierre Neidhardt, 2018/10/17
- 32/67: gnu: Add cl-colors., Pierre Neidhardt, 2018/10/17
- 31/67: gnu: Add let-plus.,
Pierre Neidhardt <=
- 35/67: gnu: Add prove., Pierre Neidhardt, 2018/10/17
- 41/67: gnu: Add queues., Pierre Neidhardt, 2018/10/17
- 43/67: gnu: Add queues.simple-cqueue., Pierre Neidhardt, 2018/10/17
- 36/67: gnu: Add proc-parse., Pierre Neidhardt, 2018/10/17
- 50/67: gnu: Add sbcl-cffi., Pierre Neidhardt, 2018/10/17
- 49/67: gnu: Add sbcl-cffi-grovel., Pierre Neidhardt, 2018/10/17
- 48/67: gnu: Add sbcl-cffi-libffi., Pierre Neidhardt, 2018/10/17
- 39/67: gnu: Add ptester., Pierre Neidhardt, 2018/10/17
- 37/67: gnu: Add parse-float., Pierre Neidhardt, 2018/10/17
- 38/67: gnu: Add simple-scanf., Pierre Neidhardt, 2018/10/17