mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add ndebug.
* gnu/packages/lisp-xyz.scm (cl-ndebug, ecl-ndebug, sbcl-ndebug): New variables.
This commit is contained in:
parent
c5a80784e2
commit
5bc131ca7a
1 changed files with 38 additions and 0 deletions
|
@ -22830,3 +22830,41 @@ It has extensive support for Guix, among others:
|
||||||
(inputs
|
(inputs
|
||||||
(cons (list "osicat" cl-osicat)
|
(cons (list "osicat" cl-osicat)
|
||||||
(package-inputs pkg))))))
|
(package-inputs pkg))))))
|
||||||
|
|
||||||
|
(define-public sbcl-ndebug
|
||||||
|
(package
|
||||||
|
(name "sbcl-ndebug")
|
||||||
|
(version "0.1.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/atlas-engineer/ndebug")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name "ndebug" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0wdp0wqk6clq3hh9yqmgdm55x50b5m7ly9004j2c8k5zz1rgi4rr"))))
|
||||||
|
(build-system asdf-build-system/sbcl)
|
||||||
|
(inputs
|
||||||
|
(list
|
||||||
|
sbcl-dissect
|
||||||
|
sbcl-lparallel
|
||||||
|
sbcl-slime-swank
|
||||||
|
sbcl-trivial-custom-debugger))
|
||||||
|
(native-inputs
|
||||||
|
(list sbcl-lisp-unit2))
|
||||||
|
(home-page "https://github.com/atlas-engineer/ndebug/")
|
||||||
|
(synopsis "Toolkit to build UI-aware Common Lisp debugger hooks")
|
||||||
|
(description
|
||||||
|
"NDebug provides a small set of utilities to make graphical (or, rather
|
||||||
|
non-REPL-resident) Common Lisp applications easier to integrate with the
|
||||||
|
standard Lisp debugger (@code{*debugger-hook*}, namely) and
|
||||||
|
implementation-specific debugger hooks (via @code{trivial-custom-debugger}),
|
||||||
|
especially in a multi-threaded context.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public cl-ndebug
|
||||||
|
(sbcl-package->cl-source-package sbcl-ndebug))
|
||||||
|
|
||||||
|
(define-public ecl-ndebug
|
||||||
|
(sbcl-package->ecl-package sbcl-ndebug))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue