[bug#57738] gnu: Add cl-morse.
Commit Message
* gnu/packages/lisp-xyz.scm (cl-morse, ecl-cl-morse, sbcl-cl-morse):
New variables.
---
gnu/packages/lisp-xyz.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
Comments
Hey,
On Sun Sep 11, 2022 at 7:33 PM BST, jgart via Guix-patches via wrote:
> + (native-inputs
> + (list sbcl-fiveam))
Change to:
> + (native-inputs (list sbcl-fiveam))
> + (inputs
> + (list sbcl-cl-ppcre))
Change to:
> + (inputs (list sbcl-cl-ppcre))
and move it before `native-inputs'.
> + (synopsis "Morse code translation library written in Common Lisp")
`written in' -> `for', maybe? To shorten the `synopsis'.
> + (description
> +"@code{cl-morse} is a morse code translation library written in Common Lisp.")
Change to:
> + (description
> + "@code{cl-morse} is a Morse code translation library written
> + in Common Lisp.")
> + (home-page "https://github.com/em7/cl-morse")
Move this before `synopsis'.
-- (
@@ -23935,6 +23935,36 @@ (define-public cl-draw-cons-tree
(define-public ecl-draw-cons-tree
(sbcl-package->ecl-package sbcl-draw-cons-tree))
+(define-public sbcl-cl-morse
+ (package
+ (name "sbcl-cl-morse")
+ (version "1.0.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/em7/cl-morse")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "01sh34nhbsx2dsrb2r1vkd4j8lzm9gjd5jfi8a4cs4m3djjwhh5i"))))
+ (build-system asdf-build-system/sbcl)
+ (native-inputs
+ (list sbcl-fiveam))
+ (inputs
+ (list sbcl-cl-ppcre))
+ (synopsis "Morse code translation library written in Common Lisp")
+ (description
+"@code{cl-morse} is a morse code translation library written in Common Lisp.")
+ (home-page "https://github.com/em7/cl-morse")
+ (license license:bsd-3)))
+
+(define-public cl-morse
+ (sbcl-package->cl-source-package sbcl-cl-morse))
+
+(define-public ecl-cl-morse
+ (sbcl-package->ecl-package sbcl-cl-morse))
+
(define-public sbcl-smug
(let ((commit "647a2428df297e1dd183ba7c19574bdb1320ae79")
(revision "0"))