mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
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.
This commit is contained in:
parent
2072bc0838
commit
147367271c
1 changed files with 10 additions and 5 deletions
|
@ -1631,16 +1631,21 @@ (define-public talkfilters
|
||||||
(define-public cmatrix
|
(define-public cmatrix
|
||||||
(package
|
(package
|
||||||
(name "cmatrix")
|
(name "cmatrix")
|
||||||
(version "1.2a")
|
(version "2.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "http://www.asty.org/cmatrix/dist/cmatrix-" version
|
(uri (git-reference
|
||||||
".tar.gz"))
|
(url "https://github.com/abishekvashok/cmatrix.git")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0k06fw2n8nzp1pcdynhajp5prba03gfgsbj91bknyjr5xb5fd9hz"))))
|
"1h9jz4m4s5l8c3figaq46ja0km1gimrkfxm4dg7mf4s84icmasbm"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
(native-inputs
|
||||||
|
`(("autoconf" ,autoconf)
|
||||||
|
("automake" ,automake)))
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases
|
'(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
|
Loading…
Reference in a new issue