guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 9840333a1d48903042048500685d5b1af040693d
Author: Ashish SHUKLA <[email protected]>
AuthorDate: Mon Jul 13 22:13:42 2026 -0300
gnu: schemesh: Update to 1.0.1.
* gnu/packages/chez.scm (schemesh): Update to 1.0.1.
[inputs]: Change ncurses to ncurses/tinfo.
Co-authored-by: Anderson Torres <[email protected]>
Merges: https://codeberg.org/guix/guix/pulls/9922
Signed-off-by: Nguyễn Gia Phong <[email protected]>
---
gnu/packages/chez.scm | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/chez.scm b/gnu/packages/chez.scm
index 72116cd73a..2dd8e89caf 100644
--- a/gnu/packages/chez.scm
+++ b/gnu/packages/chez.scm
@@ -5,7 +5,7 @@
;;; Copyright © 2019 Brett Gilio <[email protected]>
;;; Copyright © 2020 Brendan Tildesley <[email protected]>
;;; Copyright © 2021-2025 Philip McGrath <[email protected]>
-;;; Copyright © 2024 Ashish SHUKLA <[email protected]>
+;;; Copyright © 2024, 2026 Ashish SHUKLA <[email protected]>
;;; Copyright © 2025 Zhu Zihao <[email protected]>
;;; Copyright © 2026 Anderson Torres <[email protected]>
;;;
@@ -1384,7 +1384,7 @@ libraries providing most of the functionality of the
original.")
(define-public schemesh
(package
(name "schemesh")
- (version "1.0.0")
+ (version "1.0.1")
(source
(origin
(method git-fetch)
@@ -1393,7 +1393,7 @@ libraries providing most of the functionality of the
original.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "1z45xpgh2s6xfgimsjhnwkp0hh8lnaynxlbry9dvqfss0g1vh0iw"))))
+ (base32 "1amzjrmhlfa9wlplvxjb04pmlh6pprcpj1mz29vi943rfxjq0kaa"))))
(build-system gnu-build-system)
(arguments
(list
@@ -1410,7 +1410,9 @@ libraries providing most of the functionality of the
original.")
(inputs
(list chez-scheme
lz4
- ncurses
+ ;; INFO: Makefile supposes terminfo is provided by libtinfo. Ours
+ ;; is provided by ncurses/tinfo.
+ ncurses/tinfo
`(,util-linux "lib")
zlib))
(home-page "https://github.com/cosmos72/schemesh")