diff options
author | jgart <jgart@dismail.de> | 2022-09-06 07:35:56 -0500 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2022-09-07 14:32:08 +0200 |
commit | 3f46a0b6a907b80a81b700536eef487b14a2672a (patch) | |
tree | 67c38508404e08bcecde09228bcedbfe9ce15aa4 | |
parent | b36f2abe6e699cdba93e18c4e4b415fa7711ec6c (diff) | |
download | guix-3f46a0b6a907b80a81b700536eef487b14a2672a.tar guix-3f46a0b6a907b80a81b700536eef487b14a2672a.tar.gz |
gnu: Add cl-smug.
* gnu/packages/lisp-xyz.scm (cl-smug, ecl-smug, sbcl-smug): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
-rw-r--r-- | gnu/packages/lisp-xyz.scm | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 888669888d..0cd18991b1 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -23013,3 +23013,36 @@ especially in a multi-threaded context.") (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 "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/drewc/smug") + (commit commit))) + (file-name (git-file-name "cl-smug" version)) + (sha256 + (base32 "13gzkj9skya2ziwclk041v7sif392ydbvhvikhg2raa3qjcxb3rq")))) + (build-system asdf-build-system/sbcl) + (arguments + `(#:tests? #f)) ; There are no tests. + (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)) |