gnu: Add clesh.

* gnu/packages/lisp-xyz.scm (cl-clesh, ecl-clesh, sbcl-clesh): New variables.
This commit is contained in:
Pierre Neidhardt 2020-12-01 12:36:29 +01:00
parent 91d59549a7
commit 65bf9f6b2d
No known key found for this signature in database
GPG key ID: 9BDCF497A4BBCC7F

View file

@ -12041,3 +12041,35 @@ (define-public cl-trivial-shell
(define-public ecl-trivial-shell
(sbcl-package->ecl-package sbcl-trivial-shell))
(define-public sbcl-clesh
(let ((commit "44e96e04a72e5bc006dc4eb02ce8962348dd4a11"))
(package
(name "sbcl-clesh")
(version (git-version "0.0.0" "1" commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Neronus/Clesh")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "012ry02djnqyvvs61wbbqj3saz621w2l9gczrywdxhi5p4ycx318"))))
(build-system asdf-build-system/sbcl)
(inputs
`(("trivial-shell" ,sbcl-trivial-shell)
("named-readtables" ,sbcl-named-readtables)))
(home-page "https://github.com/Neronus/Clesh")
(synopsis "Embed shell code in Common Lisp")
(description
"This is a very short and simple program, written in Common Lisp, that
extends Common Lisp to embed shell code in a manner similar to Perl's
backtick. It has been forked from SHELISP.")
(license license:bsd-2))))
(define-public cl-clesh
(sbcl-package->cl-source-package sbcl-clesh))
(define-public ecl-clesh
(sbcl-package->ecl-package sbcl-clesh))