summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorAlberto Eleuterio Flores Guerrero <barbanegra+guix@posteo.mx>2020-10-22 17:16:23 -0400
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2020-10-22 17:18:24 -0400
commita49bfa1f6c22363c9e495070f51b82e60b1495af (patch)
tree9d936c89e327c568167aac4e8e7a7105fe13d164 /gnu
parent408912b076b092730ce461c5f67b76b7c00f8882 (diff)
gnu: Add emacs-typing.
* gnu/packages/emacs-xyz.scm (emacs-typing): New variable. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/emacs-xyz.scm24
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index d0158479bba..49bb82084e5 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -738,6 +738,30 @@ then only the color of the mode line changes when a window becomes in-/active.")
738clojure.walk and clojure.zip respectively.") 738clojure.walk and clojure.zip respectively.")
739 (license license:gpl3+))) 739 (license license:gpl3+)))
740 740
741(define-public emacs-typing
742 (let ((commit "a2ef25dde2d8eb91bd9c0c6164cb5208208647fa")
743 (revision "0"))
744 (package
745 (name "emacs-typing")
746 (version (git-version "1.1.4" revision commit))
747 (source
748 (origin
749 (method git-fetch)
750 (uri (git-reference
751 (url "https://github.com/kensanata/typing")
752 (commit commit)))
753 (file-name (git-file-name name version))
754 (sha256
755 (base32
756 "1dbh0srbf54lgd60ia79y9cfnq3kxlgw01qzdjs9mk3nfazzpgnv"))))
757 (build-system emacs-build-system)
758 (home-page "https://github.com/kensanata/typing/")
759 (synopsis "Emacs game where you have to type fast")
760 (description "The Typing of Emacs is a game for Emacs that
761forces you to type words correctly as fast as possible, otherwise
762you will die. The game builds the list of words from the active buffer.")
763 (license license:gpl2+))))
764
741(define-public emacs-graphql 765(define-public emacs-graphql
742 (package 766 (package
743 (name "emacs-graphql") 767 (name "emacs-graphql")