gnu: Add cl-hunchensocket.

* gnu/packages/lisp-xyz.scm (cl-hunchensocket, ecl-hunchensocket,
sbcl-hunchensocket): New variables.
Co-authored-by: Ada Stevenson <adanskana@gmail.com>

Change-Id: I90df0ab5bbcfc9ac802f8819640da915c144e669
This commit is contained in:
jgart 2024-09-26 22:51:23 -05:00
parent 13b6254abc
commit b9e6054391
No known key found for this signature in database
GPG key ID: A52AA2B477B6DD35

View file

@ -17685,6 +17685,46 @@ (define-public cl-hunchenissr-routes
(define-public ecl-hunchenissr-routes
(sbcl-package->ecl-package sbcl-hunchenissr-routes))
(define-public sbcl-hunchensocket
(let ((commit "faf2c08452f18763e541bc7f121760669ac0f41a")
(revision "0"))
(package
(name "sbcl-hunchensocket")
(version (git-version "1.0.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/joaotavora/hunchensocket/")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "1vhd009lwl62l1czmhsalblxmyz4x9v3nspjflpajwm1db5rnd7h"))))
(build-system asdf-build-system/sbcl)
(native-inputs (list sbcl-fiasco))
(inputs
(list
sbcl-hunchentoot
sbcl-alexandria
sbcl-cl-base64
sbcl-sha1
sbcl-flexi-streams
sbcl-chunga
sbcl-trivial-utf-8
sbcl-trivial-backtrace
sbcl-cl-fad))
(home-page "https://github.com/joaotavora/hunchensocket")
(synopsis "RFC6455 compliant WebSockets for Common Lisp")
(description
"This library provides a WebSockets extension for the Huchentoot web server.")
(license license:expat))))
(define-public cl-hunchensocket
(sbcl-package->cl-source-package sbcl-hunchensocket))
(define-public ecl-hunchensocket
(sbcl-package->ecl-package sbcl-hunchensocket))
(define-public sbcl-hunchentoot
;; NOTE: (Sharlatan-20220520T213309+0100): The latest commit fixed tests,
;; switch to the version tag when release is ready.