mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 22:16:32 +01:00
gnu: Add guile-jtd.
* gnu/packages/guile-xyz.scm (guile-jtd): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
7fde9758c5
commit
dd9033fc49
1 changed files with 24 additions and 0 deletions
|
@ -45,6 +45,7 @@
|
||||||
;;; Copyright © 2022 Taiju HIGASHI <higashi@taiju.info>
|
;;; Copyright © 2022 Taiju HIGASHI <higashi@taiju.info>
|
||||||
;;; Copyright © 2022 Zheng Junjie <873216071@qq.com>
|
;;; Copyright © 2022 Zheng Junjie <873216071@qq.com>
|
||||||
;;; Copyright © 2022 Evgeny Pisemsky <evgeny@pisemsky.com>
|
;;; Copyright © 2022 Evgeny Pisemsky <evgeny@pisemsky.com>
|
||||||
|
;;; Copyright © 2022 jgart <jgart@dismail.de>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -3565,6 +3566,29 @@ (define-public guile-jpeg
|
||||||
perform geometrical transforms on JPEG images.")
|
perform geometrical transforms on JPEG images.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
|
(define-public guile-jtd
|
||||||
|
(package
|
||||||
|
(name "guile-jtd")
|
||||||
|
(version "220323a")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/mwette/guile-jtd")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1l8fyqhvksarvpbr903i3ss3432jzvyvhgcqa15j922ngqh4ds6f"))))
|
||||||
|
(build-system guile-build-system)
|
||||||
|
(native-inputs (list guile-3.0))
|
||||||
|
(home-page "https://github.com/mwette/guile-jtd")
|
||||||
|
(synopsis "Python's @code{pdb.set_trace()} but for Guile")
|
||||||
|
(description
|
||||||
|
"The @code{(jtd)} module for Guile provides a procedure
|
||||||
|
@code{jump-to-debugger} for escaping to the Guile REPL for the purpose of
|
||||||
|
debugging code.")
|
||||||
|
(license license:lgpl2.1+)))
|
||||||
|
|
||||||
(define-public guile-png
|
(define-public guile-png
|
||||||
(package
|
(package
|
||||||
(name "guile-png")
|
(name "guile-png")
|
||||||
|
|
Loading…
Reference in a new issue