diff options
author | Madalin Ionel-Patrascu <madalinionel.patrascu@mdc-berlin.de> | 2018-07-24 14:01:13 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-08-16 17:04:10 +0200 |
commit | e7448859cec690e73bc67c82e37465dc101eea25 (patch) | |
tree | 0300dac70c9e46a826b7753addfb1499505de071 /gnu/packages/games.scm | |
parent | 9c33229452f7ce0d83a11bc272e10e33a0a11cc5 (diff) | |
download | guix-e7448859cec690e73bc67c82e37465dc101eea25.tar guix-e7448859cec690e73bc67c82e37465dc101eea25.tar.gz |
gnu: Add nudoku.
* gnu/packages/games.scm (nudoku): New variable.
Signed-off-by: Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de>
Diffstat (limited to 'gnu/packages/games.scm')
-rw-r--r-- | gnu/packages/games.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 0e7757511b..0142fc8ed2 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -33,6 +33,7 @@ ;;; Copyright © 2017, 2018 Nicolas Goaziou <mail@nicolasgoaziou.fr> ;;; Copyright © 2018 okapi <okapi@firemail.cc> ;;; Copyright © 2018 Tim Gesthuizen <tim.gesthuizen@yahoo.de> +;;; Copyright © 2018 Madalin Ionel-Patrascu <madalinionel.patrascu@mdc-berlin.de> ;;; ;;; This file is part of GNU Guix. ;;; @@ -4889,6 +4890,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 for your terminal.") + (license license:gpl3+))) + (define-public the-butterfly-effect (package (name "the-butterfly-effect") |