[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/19: gnu: Add cl-shared-preferences.
From: |
guix-commits |
Subject: |
05/19: gnu: Add cl-shared-preferences. |
Date: |
Fri, 9 Sep 2022 08:32:01 -0400 (EDT) |
glv pushed a commit to branch master
in repository guix.
commit 594b9dd391ddbd453ad99a31b851fb7a51062155
Author: jgart <jgart@dismail.de>
AuthorDate: Wed Sep 7 19:48:53 2022 -0500
gnu: Add cl-shared-preferences.
* gnu/packages/lisp-xyz.scm (cl-shared-preferences,
ecl-shared-preferences, sbcl-shared-preferences): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
---
gnu/packages/lisp-xyz.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index a68cf7aa98..0828bab419 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -23381,6 +23381,37 @@ right in front of standard-object in the class
precedence list.")
(define-public ecl-object-class
(sbcl-package->ecl-package sbcl-object-class))
+(define-public sbcl-shared-preferences
+ (package
+ (name "sbcl-shared-preferences")
+ (version "1.1.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Hexstream/shared-preferences")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name "cl-shared-preferences" version))
+ (sha256
+ (base32 "12m4kaba2lxndkjw30a6y2rq16fflh5016lp74l7pf3v0y3j1ydf"))))
+ (build-system asdf-build-system/sbcl)
+ (native-inputs
+ (list sbcl-parachute))
+ (inputs
+ (list sbcl-inheriting-readers
+ sbcl-trivial-garbage))
+ (home-page "https://www.hexstreamsoft.com/libraries/shared-preferences/")
+ (synopsis "Flexible specification of package-local preferences")
+ (description
+ "This package allows flexible specification of package-local
preferences.")
+ (license license:unlicense)))
+
+(define-public cl-shared-preferences
+ (sbcl-package->cl-source-package sbcl-shared-preferences))
+
+(define-public ecl-shared-preferences
+ (sbcl-package->ecl-package sbcl-shared-preferences))
+
(define-public sbcl-smug
(let ((commit "647a2428df297e1dd183ba7c19574bdb1320ae79")
(revision "0"))
- 03/19: gnu: Add cl-enhanced-defclass., (continued)
- 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
- 13/19: gnu: Add cl-compatible-metaclasses., guix-commits, 2022/09/09
- 16/19: gnu: Add cl-definitions-systems., guix-commits, 2022/09/09
- 11/19: gnu: Add cl-enhanced-boolean., guix-commits, 2022/09/09
- 05/19: gnu: Add cl-shared-preferences.,
guix-commits <=
- 09/19: gnu: Add cl-evaled-when., guix-commits, 2022/09/09
- 12/19: gnu: Add cl-cesdi., guix-commits, 2022/09/09