all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#54445] [PATCH] gnu: Add cl-purgatory.
@ 2022-03-18 12:21 cage
  2022-03-18 13:22 ` bug#54445: " Guillaume Le Vaillant
  0 siblings, 1 reply; 2+ messages in thread
From: cage @ 2022-03-18 12:21 UTC (permalink / raw)
  To: 54445

---
 gnu/packages/lisp-xyz.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 0c99518e82..4d0da2993a 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -20823,3 +20823,37 @@ (define-public cl-websocket-driver

 (define-public ecl-websocket-driver
   (sbcl-package->ecl-package sbcl-websocket-driver))
+
+(define-public sbcl-purgatory
+  (let ((commit "ade0d60a14a1067b9cc8cf06d1f1a1ca8cecdb03")
+        (revision "1"))
+    (package
+      (name "sbcl-purgatory")
+      (version (git-version "0.1.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://notabug.org/cage/purgatory")
+               (commit commit)))
+         (file-name (git-file-name "purgatory" version))
+         (sha256
+          (base32 "1mwlalymmfbx1jx5wzqcnpg5h8d0ylllm1p3f4lwaawfv05lk82s"))))
+      (build-system asdf-build-system/sbcl)
+      (inputs
+       `(("alexandria" ,sbcl-alexandria)
+         ("cl-ppcre-unicode" ,sbcl-cl-ppcre-unicode)
+         ("bordeaux-threads" ,sbcl-bordeaux-threads)
+         ("usocket" ,sbcl-usocket)
+         ("babel" ,sbcl-babel)))
+      (synopsis "Common Lisp library to make histograms")
+      (description "This is a Common Lisp library that implement
+the 9p network filesystem protocol.")
+      (home-page "https://notabug.org/cage/purgatory/")
+      (license license:llgpl))))
+
+(define-public ecl-purgatory
+  (sbcl-package->ecl-package sbcl-purgatory))
+
+(define-public cl-purgatory
+  (sbcl-package->cl-source-package sbcl-purgatory))
--
2.34.0




^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#54445: [PATCH] gnu: Add cl-purgatory.
  2022-03-18 12:21 [bug#54445] [PATCH] gnu: Add cl-purgatory cage
@ 2022-03-18 13:22 ` Guillaume Le Vaillant
  0 siblings, 0 replies; 2+ messages in thread
From: Guillaume Le Vaillant @ 2022-03-18 13:22 UTC (permalink / raw)
  To: cage; +Cc: 54445-done

Patch pushed as cab5f92836ec52b0c524aa2541f3cdcd6c5ceb6e with a few
modifications (updated copyright line, fixed synopsis, used new style
for inputs).
Thanks.




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-03-18 13:46 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-18 12:21 [bug#54445] [PATCH] gnu: Add cl-purgatory cage
2022-03-18 13:22 ` bug#54445: " Guillaume Le Vaillant

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.