guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: nudoku: Update to 2.1.0.


From: guix-commits
Subject: branch master updated: gnu: nudoku: Update to 2.1.0.
Date: Sat, 28 Nov 2020 11:14:08 -0500

This is an automated email from the git hooks/post-receive script.

ngz pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 0ae0efd  gnu: nudoku: Update to 2.1.0.
0ae0efd is described below

commit 0ae0efd9a3499bced46178d52db2d83d0123f34c
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Sat Nov 28 17:12:29 2020 +0100

    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.
---
 gnu/packages/games.scm | 26 ++++++++++++++++----------
 1 file changed, 16 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 62f62ae..1b7faa9 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -6879,17 +6879,23 @@ making Yamagi Quake II one of the most solid Quake II 
implementations available.
 (define-public nudoku
   (package
     (name "nudoku")
-    (version "1.0.0")
-    (source (origin
-             (method url-fetch)
-             (uri (string-append "https://github.com/jubalh/nudoku/";
-                                  "releases/download/" version
-                                  "/nudoku-" version ".tar.xz"))
-             (sha256
-               (base32
-                "0nr2j2z07nxk70s8xnmmpzccxicf7kn5mbwby2kg6aq8paarjm8k"))))
+    (version "2.1.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/jubalh/nudoku.git";)
+             (commit version)))
+       (sha256
+        (base32 "12v00z3p0ymi8f3w4b4bgl4c76irawn3kmd147r0ap6s9ssx2q6m"))))
     (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/";)
     (synopsis "Sudoku for your terminal")
     (description "Nudoku is a ncurses-based Sudoku game for your terminal.")



reply via email to

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