guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/04: gnu: cmatrix: Update to 2.0.


From: guix-commits
Subject: 01/04: gnu: cmatrix: Update to 2.0.
Date: Sat, 18 Jan 2020 13:54:48 -0500 (EST)

wigust pushed a commit to branch master
in repository guix.

commit 147367271c2daef0869ed6538fbe9f76a6765af7
Author: Oleg Pykhalov <address@hidden>
AuthorDate: Sat Jan 18 21:07:30 2020 +0300

    gnu: cmatrix: Update to 2.0.
    
    * gnu/packages/games.scm (cmatrix)[version]: Update to 2.0.
    [source]: Download using git-fetch.
    [native-inputs]: Add AUTOCONF and AUTOMAKE.
---
 gnu/packages/games.scm | 15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index fefb305..dd4e599 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -1631,16 +1631,21 @@ a C library, so they can easily be integrated into 
other programs.")
 (define-public cmatrix
   (package
     (name "cmatrix")
-    (version "1.2a")
+    (version "2.0")
     (source
      (origin
-       (method url-fetch)
-       (uri (string-append "http://www.asty.org/cmatrix/dist/cmatrix-"; version
-                           ".tar.gz"))
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/abishekvashok/cmatrix.git";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
        (sha256
         (base32
-         "0k06fw2n8nzp1pcdynhajp5prba03gfgsbj91bknyjr5xb5fd9hz"))))
+         "1h9jz4m4s5l8c3figaq46ja0km1gimrkfxm4dg7mf4s84icmasbm"))))
     (build-system gnu-build-system)
+    (native-inputs
+     `(("autoconf" ,autoconf)
+       ("automake" ,automake)))
     (arguments
      '(#:phases
        (modify-phases %standard-phases



reply via email to

[Prev in Thread] Current Thread [Next in Thread]