gnu: Add emacs-sudoku.

* gnu/packages/emacs-xyz.scm (emacs-sudoku): New variable.

Change-Id: I1c1079f86761ebd01f3550827e1f72bf41f2a718
This commit is contained in:
jgart 2025-04-30 12:29:28 -05:00
parent e9cd3af90d
commit 9d7da25ab2
No known key found for this signature in database
GPG key ID: A52AA2B477B6DD35

View file

@ -11579,6 +11579,25 @@ from the standard @code{query-replace} tool. The provided commands prompt for
substitute text and perform the substitution outright.") substitute text and perform the substitution outright.")
(license license:gpl3+))) (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 (define-public emacs-typo
(package (package
(name "emacs-typo") (name "emacs-typo")