all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#57615] [PATCH] gnu: Add cl-smug.
@ 2022-09-06 12:35 jgart via Guix-patches via
  2022-09-07 12:33 ` bug#57615: " Guillaume Le Vaillant
  0 siblings, 1 reply; 2+ messages in thread
From: jgart via Guix-patches via @ 2022-09-06 12:35 UTC (permalink / raw)
  To: 57615; +Cc: jgart

* gnu/packages/lisp-xyz.scm (cl-smug): New variable.
---
 gnu/packages/lisp-xyz.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 034b5f91a4..25d9d598fb 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -22996,3 +22996,38 @@ (define-public cl-ndebug
 
 (define-public ecl-ndebug
   (sbcl-package->ecl-package sbcl-ndebug))
+
+(define-public sbcl-smug
+  (let ((commit "647a2428df297e1dd183ba7c19574bdb1320ae79")
+        (revision "0"))
+    (package
+     (name "sbcl-smug")
+     (version (git-version "20211214" revision commit))
+     (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/drewc/smug")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "13gzkj9skya2ziwclk041v7sif392ydbvhvikhg2raa3qjcxb3rq"))))
+     (build-system asdf-build-system/sbcl)
+     (arguments
+      `(#:tests? #f ; There are no tests.
+        #:asd-systems '("smug")))
+     (synopsis "Parser combinators for Common Lisp")
+     (description
+"@code{cl-smug} is a library for parsing text, based on monadic parser
+combinators.  Using a simple technique from the functional programming
+camp, @code{cl-smug} makes it simple to create quick extensible recursive
+descent parsers without funky syntax or impenetrable macrology.")
+     (home-page "http://smug.drewc.ca/")
+     (license license:expat))))
+
+(define-public cl-smug
+  (sbcl-package->cl-source-package sbcl-smug))
+
+(define-public ecl-smug
+  (sbcl-package->ecl-package sbcl-smug))
+
-- 
2.37.2





^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#57615: [PATCH] gnu: Add cl-smug.
  2022-09-06 12:35 [bug#57615] [PATCH] gnu: Add cl-smug jgart via Guix-patches via
@ 2022-09-07 12:33 ` Guillaume Le Vaillant
  0 siblings, 0 replies; 2+ messages in thread
From: Guillaume Le Vaillant @ 2022-09-07 12:33 UTC (permalink / raw)
  To: jgart; +Cc: 57615-done

[-- Attachment #1: Type: text/plain, Size: 66 bytes --]

Patch pushed as 3f46a0b6a907b80a81b700536eef487b14a2672a.
Thanks.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-09-07 12:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-06 12:35 [bug#57615] [PATCH] gnu: Add cl-smug jgart via Guix-patches via
2022-09-07 12:33 ` bug#57615: " Guillaume Le Vaillant

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.