This is an automated email from the git hooks/post-receive script. jgart pushed a commit to branch master in repository guix.
The following commit(s) were added to refs/heads/master by this push: new 9d7da25ab2 gnu: Add emacs-sudoku. 9d7da25ab2 is described below commit 9d7da25ab24b7fb107087cbfeba86003b90066d9 Author: jgart <jg...@dismail.de> AuthorDate: Wed Apr 30 12:29:28 2025 -0500 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 e3c228df73..d8b3b8150e 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")