1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-13 12:45:53 +02:00

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>
This commit is contained in:
Andrew Wong
2025-02-20 02:21:29 -05:00
committed by Ludovic Courtès
parent 2447880875
commit 3ac1e06f0a
+5 -5
View File
@@ -122,7 +122,7 @@ chart.")
(define-public boxes
(package
(name "boxes")
(version "2.2.1")
(version "2.3.1")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -131,10 +131,10 @@ chart.")
(file-name (git-file-name name version))
(sha256
(base32
"1blni7kjskg6y9ycvhwq3srfvh891xhfnjbh5h2zl0pb5szpllqi"))))
"028vg9h3vxz3icy7hmxgyqhn62953h1ls6bxwbhdwhl1lpj5py3n"))))
(build-system gnu-build-system)
(arguments
`(#:test-target "test"
`(#:test-target "utest"
#:make-flags (list (string-append "GLOBALCONF="
(assoc-ref %outputs "out")
"/etc/boxes-config"))
@@ -155,11 +155,11 @@ chart.")
("doc/boxes.1" "share/man/man1/")
("boxes-config" "etc/")))))))))
(native-inputs
(list bison flex
(list bison flex cmocka
;; For the tests.
xxd))
(inputs
(list libunistring pcre2))
(list ncurses libunistring pcre2))
(home-page "https://boxes.thomasjensen.com")
(synopsis "Command line ASCII boxes")
(description