[bug#76965,v2] gnu: Add cxxmatrix.

Message ID 09c23c8b72245f6b989e8bdb928c850abb31d10b.1743832389.git.wongandj@icloud.com
State New
Headers
Series [bug#76965,v2] gnu: Add cxxmatrix. |

Commit Message

Andrew Wong April 5, 2025, 5:53 a.m. UTC
* gnu/packages/toys.scm (cxxmatrix): New variable.

Change-Id: I3298b90b65f363b56ee32c9e24ce4639e6501e80
---
Fixed the version number and polished up the synopsis/description
 gnu/packages/toys.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)


base-commit: c10ca0d37a640000d09e42766123088041431e6c
  

Comments

Z572 April 18, 2025, 12:30 p.m. UTC | #1
Andrew Wong via Guix-patches via <guix-patches@gnu.org> writes:

> * gnu/packages/toys.scm (cxxmatrix): New variable.
>
> Change-Id: I3298b90b65f363b56ee32c9e24ce4639e6501e80
> ---
> Fixed the version number and polished up the synopsis/description
>  gnu/packages/toys.scm | 28 ++++++++++++++++++++++++++++
>  1 file changed, 28 insertions(+)
>
> diff --git a/gnu/packages/toys.scm b/gnu/packages/toys.scm
> index f0284ad9d6..6354a8640a 100644
> --- a/gnu/packages/toys.scm
> +++ b/gnu/packages/toys.scm
> @@ -103,6 +103,34 @@ (define-public cbonsai
>  creates, colors, and positions a bonsai tree, and is configurable.")
>        (license license:gpl3+))))
>  
> +(define-public cxxmatrix
> +  (let ((commit "c8d4ecfb8b6c22bb93f3e10a9d203209ba193591")
> +        (revision "0"))
> +    (package
> +      (name "cxxmatrix")
> +      (version (git-version "0" revision commit))
> +      (source
> +       (origin
> +         (method git-fetch)
> +         (uri (git-reference
> +               (url "https://github.com/akinomyoga/cxxmatrix")
> +               (commit commit)))
> +         (file-name (git-file-name name version))
> +         (sha256
> +          (base32 "0shlh0kbx5169pk1i72ymyyfadywyzmw4f95hn0lm8irjynizzg5"))))
> +      (build-system gnu-build-system)
> +      (arguments
> +       (list #:tests? #f                ;no tests
> +             #:make-flags #~(list (string-append "PREFIX=" #$output))
> +             #:phases #~(modify-phases %standard-phases (delete 'configure))))
> +      (home-page "https://github.com/akinomyoga/cxxmatrix")
> +      (synopsis "Configurable @emph{The Matrix} digital rain effect and more")
> +      (description "This package displays the ``digital rain'' effect from the 1999
> +film @emph{The Matrix} in the terminal with authentic hankaku kana characters and
> +bloom as well as rotating and zooming Mandelbrot set and Conway's game of life
> +effects.  The presented title text and color are configurable.")
> +      (license license:expat))))
> +
>  (define-public daikichi
>    (package
>      (name "daikichi")
>
> base-commit: c10ca0d37a640000d09e42766123088041431e6c
pushed, closing.
  

Patch

diff --git a/gnu/packages/toys.scm b/gnu/packages/toys.scm
index f0284ad9d6..6354a8640a 100644
--- a/gnu/packages/toys.scm
+++ b/gnu/packages/toys.scm
@@ -103,6 +103,34 @@  (define-public cbonsai
 creates, colors, and positions a bonsai tree, and is configurable.")
       (license license:gpl3+))))
 
+(define-public cxxmatrix
+  (let ((commit "c8d4ecfb8b6c22bb93f3e10a9d203209ba193591")
+        (revision "0"))
+    (package
+      (name "cxxmatrix")
+      (version (git-version "0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/akinomyoga/cxxmatrix")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0shlh0kbx5169pk1i72ymyyfadywyzmw4f95hn0lm8irjynizzg5"))))
+      (build-system gnu-build-system)
+      (arguments
+       (list #:tests? #f                ;no tests
+             #:make-flags #~(list (string-append "PREFIX=" #$output))
+             #:phases #~(modify-phases %standard-phases (delete 'configure))))
+      (home-page "https://github.com/akinomyoga/cxxmatrix")
+      (synopsis "Configurable @emph{The Matrix} digital rain effect and more")
+      (description "This package displays the ``digital rain'' effect from the 1999
+film @emph{The Matrix} in the terminal with authentic hankaku kana characters and
+bloom as well as rotating and zooming Mandelbrot set and Conway's game of life
+effects.  The presented title text and color are configurable.")
+      (license license:expat))))
+
 (define-public daikichi
   (package
     (name "daikichi")