diff options
author | Leo Famulari <leo@famulari.name> | 2021-09-24 12:04:15 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2021-09-24 12:36:17 -0400 |
commit | 1f08a6a26997011751845503c365aa54c7e5a5bc (patch) | |
tree | c0eae2bef4cdacc337266007b7fbf6fb48ba3b7e | |
parent | 4914846012392f5653d11ba9a94da175f70abe9f (diff) |
gnu: cbonsai: Update to 1.3.1.
* gnu/packages/toys.scm (cbonsai): Update 1.3.1.
[native-inputs]: Add scdoc.
-rw-r--r-- | gnu/packages/toys.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/toys.scm b/gnu/packages/toys.scm index 3306f7e0f6..52a4d0bb15 100644 --- a/gnu/packages/toys.scm +++ b/gnu/packages/toys.scm @@ -25,6 +25,7 @@ #:use-module (gnu packages bison) #:use-module (gnu packages flex) #:use-module (gnu packages gtk) + #:use-module (gnu packages man) #:use-module (gnu packages ncurses) #:use-module (gnu packages perl) #:use-module (gnu packages pkg-config) @@ -302,7 +303,7 @@ of the Nyan Cat / Poptart Cat animation.") (define-public cbonsai (package (name "cbonsai") - (version "1.2.1") + (version "1.3.1") (source (origin (method git-fetch) (uri (git-reference @@ -311,7 +312,7 @@ of the Nyan Cat / Poptart Cat animation.") (file-name (git-file-name name version)) (sha256 (base32 - "16q02mr5zmnd9bmhnlkvjddcxvk0s8323pvmazmz3ch1ralck1wj")))) + "1krsrf7gilmpnba6hjgz8mk32vs55b4i1rxlp7ajrw0v487blljw")))) (build-system gnu-build-system) (arguments `(#:tests? #f ; No test suite @@ -328,7 +329,8 @@ of the Nyan Cat / Poptart Cat animation.") ,(package-version this-package)))) (install-file "README.md" doc))))))) (native-inputs - `(("pkg-config" ,pkg-config))) + `(("pkg-config" ,pkg-config) + ("scdoc" ,scdoc))) (inputs `(("ncurses" ,ncurses))) (home-page "https://gitlab.com/jallbrit/cbonsai") |