all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#73223] [PATCH 1/2] gnu: Add sbcl-print-licenses.
@ 2024-09-13 10:02 Roman Scherer
  2024-09-13 10:02 ` [bug#73223] [PATCH 2/2] gnu: Add sbcl-s-base64 Roman Scherer
  2024-09-14  9:15 ` bug#73223: [PATCH 1/2] gnu: Add sbcl-print-licenses Guillaume Le Vaillant
  0 siblings, 2 replies; 3+ messages in thread
From: Roman Scherer @ 2024-09-13 10:02 UTC (permalink / raw)
  To: 73223
  Cc: Roman Scherer, Guillaume Le Vaillant, Katherine Cox-Buday,
	Munyoki Kilyungi, Sharlatan Hellseher, jgart

* gnu/packages/lisp-xyz.scm (sbcl-print-licenses): New variable.

Change-Id: I62b6655a560e37218e2f056065cd4523b4c0916f
---
 gnu/packages/lisp-xyz.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index af48813a16..7b80d4df1e 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -23963,6 +23963,34 @@ (define-public ecl-ppath
 (define-public cl-ppath
   (sbcl-package->cl-source-package sbcl-ppath))
 
+(define-public sbcl-print-licenses
+  (let ((commit "3949663318fb736f4ee660e3aa810875187d531c")
+        (revision "0"))
+    (package
+      (name "sbcl-print-licenses")
+      (build-system asdf-build-system/sbcl)
+      (version (git-version "0.1.0" revision commit))
+      (home-page "https://github.com/vindarel/print-licenses/")
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url home-page)
+               (commit commit)))
+         (file-name (git-file-name "cl-print-licenses" version))
+         (sha256
+          (base32 "14i6r6mf16dlj1g4xk0alg2912y3wy0qbfpyvvgsgxkkar63cmi5"))))
+      (inputs (list sbcl-alexandria sbcl-iterate))
+      (synopsis "Print licenses used by a Common Lisp project")
+      (description "Print licenses used by a Common Lisp project and its dependencies.")
+      (license license:bsd-2))))
+
+(define-public ecl-print-licenses
+  (sbcl-package->ecl-package sbcl-print-licenses))
+
+(define-public cl-print-licenses
+  (sbcl-package->cl-source-package sbcl-print-licenses))
+
 (define-public sbcl-printv
   (let ((commit "e717a7fe076dae861a96117b2f9af29db8d2294d")
         (revision "2"))

base-commit: 37a0c526fbef884e38b2266098b8c528847d9ef0
-- 
2.46.0





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

end of thread, other threads:[~2024-09-14  9:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-13 10:02 [bug#73223] [PATCH 1/2] gnu: Add sbcl-print-licenses Roman Scherer
2024-09-13 10:02 ` [bug#73223] [PATCH 2/2] gnu: Add sbcl-s-base64 Roman Scherer
2024-09-14  9:15 ` bug#73223: [PATCH 1/2] gnu: Add sbcl-print-licenses 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.