mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 23:02:16 -05:00
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>
This commit is contained in:
parent
1f13f79583
commit
594b9dd391
1 changed files with 31 additions and 0 deletions
|
@ -23381,6 +23381,37 @@ (define-public cl-object-class
|
|||
(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"))
|
||||
|
|
Loading…
Reference in a new issue