From 9d7da25ab24b7fb107087cbfeba86003b90066d9 Mon Sep 17 00:00:00 2001 From: jgart Date: Wed, 30 Apr 2025 12:29:28 -0500 Subject: [PATCH] gnu: Add emacs-sudoku. * gnu/packages/emacs-xyz.scm (emacs-sudoku): New variable. Change-Id: I1c1079f86761ebd01f3550827e1f72bf41f2a718 --- gnu/packages/emacs-xyz.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index e3c228df733..d8b3b8150e7 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -11579,6 +11579,25 @@ from the standard @code{query-replace} tool. The provided commands prompt for substitute text and perform the substitution outright.") (license license:gpl3+))) +(define-public emacs-sudoku + (package + (name "emacs-sudoku") + (version "20191015.1315") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/zevlg/sudoku.el.git") + (commit "b1924fd244a5fa284de9d67b66fbd69164b37318"))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19i3rrz4qnc9i845j0bbmps69372rry7gadcyj06gvq2hf9dy3nh")))) + (build-system emacs-build-system) + (home-page "https://github.com/zevlg/sudoku.el") + (synopsis "Simple sudoku game in Emacs") + (description "This package provides a simple sudoku game in Emacs.") + (license license:gpl3+))) + (define-public emacs-typo (package (name "emacs-typo")