emacs-bug-tracker
[Top][All Lists]
Advanced

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

[debbugs-tracker] bug#32256: closed ([PATCH] gnu: Add nudoku.)


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#32256: closed ([PATCH] gnu: Add nudoku.)
Date: Thu, 16 Aug 2018 15:09:02 +0000

Your message dated Thu, 16 Aug 2018 17:07:55 +0200
with message-id <address@hidden>
and subject line Re: [bug#32256] [PATCH] gnu: Add nudoku.
has caused the debbugs.gnu.org bug report #32256,
regarding [PATCH] gnu: Add nudoku.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
32256: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=32256
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: Add nudoku. Date: Tue, 24 Jul 2018 14:04:02 +0200
From: Madalin Ionel-Patrascu <address@hidden>

* gnu/packages/games.scm (nudoku): New variable.

Signed-off-by: Ricardo Wurmus <address@hidden>
---
 gnu/packages/games.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 4af0b52e8..c2e35791f 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -33,6 +33,7 @@
 ;;; Copyright © 2017, 2018 Nicolas Goaziou <address@hidden>
 ;;; Copyright © 2018 okapi <address@hidden>
 ;;; Copyright © 2018 Tim Gesthuizen <address@hidden>
+;;; Copyright © 2018 Madalin Ionel-Patrascu <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -4714,6 +4715,25 @@ making Yamagi Quake II one of the most solid Quake II 
implementations available.
                     "See Info-Zip section.")
                    license:public-domain)))) ; stb
 
+(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"))))
+    (build-system gnu-build-system)
+    (inputs `(("ncurses" ,ncurses)))
+    (home-page "https://jubalh.github.io/nudoku/";)
+    (synopsis "Sudoku for your terminal")
+    (description "nudoku is a ncurses based sudoku game.")
+    (license license:gpl3+)))
+
 (define-public the-butterfly-effect
   (package
     (name "the-butterfly-effect")
-- 
2.18.0




--- End Message ---
--- Begin Message --- Subject: Re: [bug#32256] [PATCH] gnu: Add nudoku. Date: Thu, 16 Aug 2018 17:07:55 +0200 User-agent: mu4e 1.0; emacs 26.1
Hi Kei,

> Ricardo Wurmus <address@hidden> writes:
>
>> From: Madalin Ionel-Patrascu <address@hidden>
>>
>> * gnu/packages/games.scm (nudoku): New variable.
>>
>> Signed-off-by: Ricardo Wurmus <address@hidden>
>> ---
[…]
>> +    (description "nudoku is a ncurses based sudoku game.")
>
> I'd use "@code{nudoku}" here because it's the name of a program.
>
>> +    (license license:gpl3+)))
>> +
>>  (define-public the-butterfly-effect
>>    (package
>>      (name "the-butterfly-effect")
>
> Otherwise this looks fine and works well for me!

Thanks for your input.  I changed the description, but ended up not
using @code{} here.

-- 
Ricardo


--- End Message ---

reply via email to

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