summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjgart <jgart@dismail.de>2025-06-18 14:35:45 -0400
committerjgart <jgart@dismail.de>2025-06-18 14:38:07 -0400
commit27e4178437a7a4f0e527c5f3190a67870431f667 (patch)
treeaf21cc909406f50b67593e2246205a580fc5f9c3
parent97dd07d24d1880e282ad4200d1f1ae43b9cbff5a (diff)
gnu: Remove sbcl-wayflan.
* gnu/packages/lisp-xyz.scm (sbcl-wayflan): Delete variable. Change-Id: I81e31fb11f38b195c062e45405b58232d3e0a50a
-rw-r--r--gnu/packages/lisp-xyz.scm44
1 files changed, 0 insertions, 44 deletions
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index ac016779e9..4ae892f9d7 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -32310,50 +32310,6 @@ has a small codebase that's easy to understand and use.")
(define-public ecl-vom
(sbcl-package->ecl-package sbcl-vom))
-(define-public sbcl-wayflan
- (package
- (name "sbcl-wayflan")
- (version "0.0.4")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://git.sr.ht/~shunter/wayflan")
- (commit (string-append "v" version))))
- (file-name (git-file-name "cl-wayflan" version))
- (sha256
- (base32 "0y6hzskp1vgaigzj5b3i695sc6dn5mk7nlxs21nh5ybzmf4chhyy"))))
- (build-system asdf-build-system/sbcl)
- (native-inputs
- (list sbcl-parachute))
- (inputs
- (list sbcl-alexandria
- sbcl-babel
- sbcl-cffi
- sbcl-closer-mop
- sbcl-plump))
- (home-page "https://git.sr.ht/~shunter/wayflan")
- (synopsis "Wayland communication library for Common Lisp")
- (description
- "Wayflan is a from-scratch Wayland communication library for Common Lisp.
-It makes a good-faith effort to mimic @code{libwayland} behavior not defined
-in the Wayland spec, to keep compatibility between the two libraries.
-
-Wayflan is not a compositor nor a GUI toolkit. Its purpose is to parse Wayland
-protocol XML documents and exchange Wayland messages between other processes.
-
-Features:
-@itemize
-@item Client support
-@item All implementation done in Common Lisp from the socket up
-@item Enum values are translated into keywords
-@item Wayland protocol introspection
-@item ASDF component @code{:wayflan-client-impl} generates code from
-XML. ASDF's extensible components make it possible to teach your program new
-protocols for Wayland without the need of a special build system.
-@end itemize")
- (license license:bsd-3)))
-
(define-public cl-wayflan
(sbcl-package->cl-source-package sbcl-wayflan))