Archived
1
0
Fork 0

gnu: nudoku: Update to 2.1.0.

* gnu/packages/games.scm (nudoku): Update to 2.1.0.
[native-inputs]: Add autoconf, automake, gettext-minimal and pkg-config.
[source]: Use git-fetch since the last tag is not released as an archive.
This commit is contained in:
Nicolas Goaziou 2020-11-28 17:12:29 +01:00
parent c76d0201f7
commit 0ae0efd9a3
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -6879,17 +6879,23 @@ making Yamagi Quake II one of the most solid Quake II implementations available.
(define-public nudoku (define-public nudoku
(package (package
(name "nudoku") (name "nudoku")
(version "1.0.0") (version "2.1.0")
(source (origin (source
(method url-fetch) (origin
(uri (string-append "https://github.com/jubalh/nudoku/" (method git-fetch)
"releases/download/" version (uri (git-reference
"/nudoku-" version ".tar.xz")) (url "https://github.com/jubalh/nudoku.git")
(sha256 (commit version)))
(base32 (sha256
"0nr2j2z07nxk70s8xnmmpzccxicf7kn5mbwby2kg6aq8paarjm8k")))) (base32 "12v00z3p0ymi8f3w4b4bgl4c76irawn3kmd147r0ap6s9ssx2q6m"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(inputs `(("ncurses" ,ncurses))) (native-inputs
`(("autoconf" ,autoconf)
("automake" ,automake)
("gettext" ,gettext-minimal)
("pkg-config" ,pkg-config)))
(inputs
`(("ncurses" ,ncurses)))
(home-page "https://jubalh.github.io/nudoku/") (home-page "https://jubalh.github.io/nudoku/")
(synopsis "Sudoku for your terminal") (synopsis "Sudoku for your terminal")
(description "Nudoku is a ncurses-based Sudoku game for your terminal.") (description "Nudoku is a ncurses-based Sudoku game for your terminal.")