gnu: Add cl-definitions-systems.

* gnu/packages/lisp-xyz.scm (cl-definitions-systems,
  ecl-definitions-systems, sbcl-definitions-systems): New variables.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
jgart 2022-09-07 19:49:04 -05:00 committed by Guillaume Le Vaillant
parent d8eca33c34
commit c952c06f25
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -23729,6 +23729,40 @@ (define-public cl-enhanced-find-class
(define-public ecl-enhanced-find-class
(sbcl-package->ecl-package sbcl-enhanced-find-class))
(define-public sbcl-definitions-systems
(package
(name "sbcl-definitions-systems")
(version "2.0.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Hexstream/definitions-systems")
(commit (string-append "v" version))))
(file-name (git-file-name "cl-definitions-systems" version))
(sha256
(base32 "009392mj0qdq4jy0dw5r41schnygwj286759yvyg7xja30a0psfq"))))
(build-system asdf-build-system/sbcl)
(native-inputs
(list sbcl-parachute))
(inputs
(list sbcl-canonicalized-initargs
sbcl-enhanced-defclass
sbcl-enhanced-find-class
sbcl-shared-preferences))
(home-page "https://www.hexstreamsoft.com/libraries/definitions-systems/")
(synopsis "Unified extensible way of processing named definitions")
(description
"@code{definitions-systems} provides a simple unified extensible way of
processing named definitions.")
(license license:unlicense)))
(define-public cl-definitions-systems
(sbcl-package->cl-source-package sbcl-definitions-systems))
(define-public ecl-definitions-systems
(sbcl-package->ecl-package sbcl-definitions-systems))
(define-public sbcl-smug
(let ((commit "647a2428df297e1dd183ba7c19574bdb1320ae79")
(revision "0"))