mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
gnu: Add cl-trivial-sockets.
* gnu/packages/lisp-xyz.scm (cl-trivial-sockets, sbcl-trivial-sockets): New variables. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
parent
16d4ded630
commit
4716cea625
1 changed files with 24 additions and 0 deletions
|
@ -4057,6 +4057,30 @@ (define-public cl-usocket
|
|||
(define-public ecl-usocket
|
||||
(sbcl-package->ecl-package sbcl-usocket))
|
||||
|
||||
(define-public sbcl-trivial-sockets
|
||||
(package
|
||||
(name "sbcl-trivial-sockets")
|
||||
(version "0.4")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/usocket/trivial-sockets/")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name "cl-trivial-sockets" version))
|
||||
(sha256
|
||||
(base32 "0xj9x5z3psxqap9c29qz1xswx5fiqxyzd35kmbw2g6z08cgb7nd0"))))
|
||||
(build-system asdf-build-system/sbcl)
|
||||
(home-page "https://github.com/usocket/trivial-sockets")
|
||||
(synopsis "Simple socket library for Common Lisp")
|
||||
(description
|
||||
"This library is a portable socket interface that allows CL programs to
|
||||
open connected (client) stream sockets to network services.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public cl-trivial-sockets
|
||||
(sbcl-package->cl-source-package sbcl-trivial-sockets))
|
||||
|
||||
(define-public sbcl-s-xml
|
||||
(package
|
||||
(name "sbcl-s-xml")
|
||||
|
|
Loading…
Reference in a new issue