summaryrefslogtreecommitdiff
path: root/gnu/packages/shellutils.scm
diff options
context:
space:
mode:
authorAndrew Wong <wongandj@icloud.com>2025-02-20 02:21:29 -0500
committerLudovic Courtès <ludo@gnu.org>2025-03-10 15:41:33 +0100
commit3ac1e06f0a671ae201ca944e6c540d407aebdc3a (patch)
treebf24d9b4be4c48442a533d25f4e9a37012ae3f3e /gnu/packages/shellutils.scm
parent24478808756c2787e4cb60d2d0e97f87924d2aa4 (diff)
gnu: boxes: Update to 2.3.1.
* gnu/packages/shellutils.scm (boxes): Update to 2.3.1. [arguments]: Change test target to "utest". [native-inputs]: Add ‘cmocka’. [inputs]: Add ‘ncurses’. Change-Id: I673df8b670f28f5da13f141c35b96eeb08c40a54 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/shellutils.scm')
-rw-r--r--gnu/packages/shellutils.scm10
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/shellutils.scm b/gnu/packages/shellutils.scm
index dc9a51e25f1..28c8af8685a 100644
--- a/gnu/packages/shellutils.scm
+++ b/gnu/packages/shellutils.scm
@@ -122,7 +122,7 @@ chart.")
122(define-public boxes 122(define-public boxes
123 (package 123 (package
124 (name "boxes") 124 (name "boxes")
125 (version "2.2.1") 125 (version "2.3.1")
126 (source (origin 126 (source (origin
127 (method git-fetch) 127 (method git-fetch)
128 (uri (git-reference 128 (uri (git-reference
@@ -131,10 +131,10 @@ chart.")
131 (file-name (git-file-name name version)) 131 (file-name (git-file-name name version))
132 (sha256 132 (sha256
133 (base32 133 (base32
134 "1blni7kjskg6y9ycvhwq3srfvh891xhfnjbh5h2zl0pb5szpllqi")))) 134 "028vg9h3vxz3icy7hmxgyqhn62953h1ls6bxwbhdwhl1lpj5py3n"))))
135 (build-system gnu-build-system) 135 (build-system gnu-build-system)
136 (arguments 136 (arguments
137 `(#:test-target "test" 137 `(#:test-target "utest"
138 #:make-flags (list (string-append "GLOBALCONF=" 138 #:make-flags (list (string-append "GLOBALCONF="
139 (assoc-ref %outputs "out") 139 (assoc-ref %outputs "out")
140 "/etc/boxes-config")) 140 "/etc/boxes-config"))
@@ -155,11 +155,11 @@ chart.")
155 ("doc/boxes.1" "share/man/man1/") 155 ("doc/boxes.1" "share/man/man1/")
156 ("boxes-config" "etc/"))))))))) 156 ("boxes-config" "etc/")))))))))
157 (native-inputs 157 (native-inputs
158 (list bison flex 158 (list bison flex cmocka
159 ;; For the tests. 159 ;; For the tests.
160 xxd)) 160 xxd))
161 (inputs 161 (inputs
162 (list libunistring pcre2)) 162 (list ncurses libunistring pcre2))
163 (home-page "https://boxes.thomasjensen.com") 163 (home-page "https://boxes.thomasjensen.com")
164 (synopsis "Command line ASCII boxes") 164 (synopsis "Command line ASCII boxes")
165 (description 165 (description