gnu: guile-scheme-json-rpc: Update to 0.4.5a.

Shift some inputs requiring during runtime.

* gnu/packages/guile-xyz.scm (guile-scheme-json-rpc): Update to 0.4.5a.
[inputs]: Remove guile-srfi-145 and guile-srfi-180.
[propagated-inputs]: Add guile-srfi-145 and guile-srfi-180.

Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Change-Id: If1c6ffaf6269c36ec857fd6f0aec444869468d24
This commit is contained in:
Ilya Chernyshov 2024-03-04 21:14:41 +07:00 committed by Sharlatan Hellseher
parent 10345d2f63
commit 868e21bb76
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -47,6 +47,7 @@
;;; Copyright © 2022 Evgeny Pisemsky <evgeny@pisemsky.com>
;;; Copyright © 2022 jgart <jgart@dismail.de>
;;; Copyright © 2023 Andrew Tropin <andrew@trop.in>
;;; Copyright © 2024 Ilya Chernyshov <ichernyshovvv@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@ -1088,7 +1089,7 @@ (define-public guile2.2-sjson
(define-public guile-scheme-json-rpc
(package
(name "guile-scheme-json-rpc")
(version "0.4.0")
(version "0.4.5a")
(source (origin
(method git-fetch)
(uri (git-reference
@ -1097,14 +1098,15 @@ (define-public guile-scheme-json-rpc
(file-name (git-file-name name version))
(sha256
(base32
"0jsampz2ahs18z6yh9b5l3lkj8ycnavs0vg9sjngdj3w3zvrdcvm"))))
"0356hm6phcfgvwvx3ys6b927v40jzb7qrfgvql7g78na24zp2cmi"))))
(build-system gnu-build-system)
(arguments
`(#:phases (modify-phases %standard-phases
(add-after 'unpack 'change-to-guile-dir
(lambda _
(chdir "guile"))))))
(inputs (list guile-3.0 guile-srfi-145 guile-srfi-180))
(inputs (list guile-3.0))
(propagated-inputs (list guile-srfi-145 guile-srfi-180))
(native-inputs (list pkg-config))
(synopsis "Library providing JSON-RPC capability for Guile Scheme")
(description