[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/19: gnu: Add cl-inheriting-readers.
From: |
guix-commits |
Subject: |
06/19: gnu: Add cl-inheriting-readers. |
Date: |
Fri, 9 Sep 2022 08:32:01 -0400 (EDT) |
glv pushed a commit to branch master
in repository guix.
commit 5e7f2a5e12e5540cf03798ce85197ac037c679e9
Author: jgart <jgart@dismail.de>
AuthorDate: Wed Sep 7 19:48:54 2022 -0500
gnu: Add cl-inheriting-readers.
* gnu/packages/lisp-xyz.scm (cl-inheriting-readers,
ecl-inheriting-readers, sbcl-inheriting-readers): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
---
gnu/packages/lisp-xyz.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 0828bab419..50c0eff68d 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -23412,6 +23412,38 @@ right in front of standard-object in the class
precedence list.")
(define-public ecl-shared-preferences
(sbcl-package->ecl-package sbcl-shared-preferences))
+(define-public sbcl-inheriting-readers
+ (package
+ (name "sbcl-inheriting-readers")
+ (version "1.0.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Hexstream/inheriting-readers")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name "cl-inheriting-readers" version))
+ (sha256
+ (base32 "0km3mq6vx1q9qv6j3r4sqqcsdbnb5jar66bl0mzzpaacfvzbx68p"))))
+ (build-system asdf-build-system/sbcl)
+ (native-inputs
+ (list sbcl-parachute))
+ (inputs
+ (list sbcl-class-options
+ sbcl-closer-mop
+ sbcl-compatible-metaclasses))
+ (home-page "https://www.hexstreamsoft.com/libraries/inheriting-readers/")
+ (synopsis "Simple yet powerful value inheritance scheme")
+ (description
+ "This package provides a simple yet powerful value inheritance scheme.")
+ (license license:unlicense)))
+
+(define-public cl-inheriting-readers
+ (sbcl-package->cl-source-package sbcl-inheriting-readers))
+
+(define-public ecl-inheriting-readers
+ (sbcl-package->ecl-package sbcl-inheriting-readers))
+
(define-public sbcl-smug
(let ((commit "647a2428df297e1dd183ba7c19574bdb1320ae79")
(revision "0"))
- branch master updated (b9e0aff9dc -> a4f96f2aa8), guix-commits, 2022/09/09
- 01/19: gnu: Add cl-canonicalized-initargs., guix-commits, 2022/09/09
- 04/19: gnu: Add cl-object-class., guix-commits, 2022/09/09
- 06/19: gnu: Add cl-inheriting-readers.,
guix-commits <=
- 14/19: gnu: Add cl-class-options., guix-commits, 2022/09/09
- 07/19: gnu: Add cl-simple-guess., guix-commits, 2022/09/09
- 18/19: gnu: Add cl-quicklisp-stats., guix-commits, 2022/09/09
- 03/19: gnu: Add cl-enhanced-defclass., guix-commits, 2022/09/09
- 15/19: gnu: Add cl-enhanced-find-class., guix-commits, 2022/09/09
- 02/19: gnu: Add cl-enhanced-typep., guix-commits, 2022/09/09
- 08/19: gnu: Add cl-fakenil., guix-commits, 2022/09/09
- 17/19: gnu: Add cl-alexandria-plus., guix-commits, 2022/09/09
- 19/19: gnu: Add cl-doplus., guix-commits, 2022/09/09
- 10/19: gnu: Add cl-enhanced-eval-when., guix-commits, 2022/09/09