From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56398) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fhw4s-00058b-Be for guix-patches@gnu.org; Tue, 24 Jul 2018 08:06:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fhw4p-0007ng-5f for guix-patches@gnu.org; Tue, 24 Jul 2018 08:06:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:49619) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fhw4p-0007n2-1A for guix-patches@gnu.org; Tue, 24 Jul 2018 08:06:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fhw4o-00086a-PX for guix-patches@gnu.org; Tue, 24 Jul 2018 08:06:02 -0400 Subject: [bug#32256] [PATCH] gnu: Add nudoku. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55470) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fhw3Z-00043M-Ca for guix-patches@gnu.org; Tue, 24 Jul 2018 08:04:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fhw3W-0006ZE-90 for guix-patches@gnu.org; Tue, 24 Jul 2018 08:04:45 -0400 Received: from pegasus.bbbm.mdc-berlin.de ([141.80.25.20]:46432) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fhw3V-0006V8-Tj for guix-patches@gnu.org; Tue, 24 Jul 2018 08:04:42 -0400 Received: from localhost (localhost [127.0.0.1]) by pegasus.bbbm.mdc-berlin.de (Postfix) with ESMTP id 0FEB999D490 for ; Tue, 24 Jul 2018 14:04:33 +0200 (CEST) Received: from pegasus.bbbm.mdc-berlin.de ([127.0.0.1]) by localhost (pegasus.bbbm.mdc-berlin.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id d7eKk29IhHNu for ; Tue, 24 Jul 2018 14:04:27 +0200 (CEST) Received: from SW-IT-P-CAS1.mdc-berlin.net (puck.citx.mdc-berlin.de [141.80.36.101]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (No client certificate requested) by pegasus.bbbm.mdc-berlin.de (Postfix) with ESMTPS for ; Tue, 24 Jul 2018 14:04:27 +0200 (CEST) From: Ricardo Wurmus Date: Tue, 24 Jul 2018 14:04:02 +0200 Message-ID: <20180724120402.22409-1-ricardo.wurmus@mdc-berlin.de> MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 32256@debbugs.gnu.org Cc: Ricardo Wurmus , madalinionel.patrascu@mdc-berlin.de From: Madalin Ionel-Patrascu * gnu/packages/games.scm (nudoku): New variable. Signed-off-by: Ricardo Wurmus --- 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 =C2=A9 2017, 2018 Nicolas Goaziou ;;; Copyright =C2=A9 2018 okapi ;;; Copyright =C2=A9 2018 Tim Gesthuizen +;;; Copyright =C2=A9 2018 Madalin Ionel-Patrascu ;;; ;;; 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 =20 +(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") --=20 2.18.0