mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add cl-definitions.
* gnu/packages/lisp-xyz.scm (cl-definitions, ecl-definitions, sbcl-definitions): New variables.
This commit is contained in:
parent
fc573330dd
commit
ebbccd90de
1 changed files with 33 additions and 0 deletions
|
@ -21726,3 +21726,36 @@ (define-public cl-clache
|
|||
|
||||
(define-public ecl-clache
|
||||
(sbcl-package->ecl-package sbcl-clache))
|
||||
|
||||
(define-public sbcl-definitions
|
||||
(let ((commit "1f4bd7a634a2299aea19cefb5da8041bbb27f2ec"))
|
||||
(package
|
||||
(name "sbcl-definitions")
|
||||
(version (git-version "1.0.0" "1" commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/Shinmera/definitions/")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name "cl-definitions" version))
|
||||
(sha256
|
||||
(base32 "16dh9iy3v344xj4qllsp47007px3yx26fxxh9gh2cvs8dqgk3kch"))))
|
||||
(build-system asdf-build-system/sbcl)
|
||||
(inputs
|
||||
(list sbcl-documentation-utils))
|
||||
(home-page "https://shinmera.github.io/definitions")
|
||||
(synopsis "General definitions reflection library")
|
||||
(description
|
||||
"This system implements a general definitions introspection library.
|
||||
It gives you the ability to retrieve definitions or bindings associated with
|
||||
designators such as symbols, packages, and names in general. For instance, it
|
||||
allows you to retrieve all function, type, variable, method, etc. definitions
|
||||
of a symbol.")
|
||||
(license license:zlib))))
|
||||
|
||||
(define-public cl-definitions
|
||||
(sbcl-package->cl-source-package sbcl-definitions))
|
||||
|
||||
(define-public ecl-definitions
|
||||
(sbcl-package->ecl-package sbcl-definitions))
|
||||
|
|
Loading…
Reference in a new issue