[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add emacs-typing.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add emacs-typing. |
Date: |
Thu, 22 Oct 2020 17:20:32 -0400 |
This is an automated email from the git hooks/post-receive script.
apteryx pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new a49bfa1 gnu: Add emacs-typing.
a49bfa1 is described below
commit a49bfa1f6c22363c9e495070f51b82e60b1495af
Author: Alberto Eleuterio Flores Guerrero <barbanegra+guix@posteo.mx>
AuthorDate: Thu Oct 22 17:16:23 2020 -0400
gnu: Add emacs-typing.
* gnu/packages/emacs-xyz.scm (emacs-typing): New variable.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
---
gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index d015847..49bb820 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.")
clojure.walk and clojure.zip respectively.")
(license license:gpl3+)))
+(define-public emacs-typing
+ (let ((commit "a2ef25dde2d8eb91bd9c0c6164cb5208208647fa")
+ (revision "0"))
+ (package
+ (name "emacs-typing")
+ (version (git-version "1.1.4" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/kensanata/typing")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1dbh0srbf54lgd60ia79y9cfnq3kxlgw01qzdjs9mk3nfazzpgnv"))))
+ (build-system emacs-build-system)
+ (home-page "https://github.com/kensanata/typing/")
+ (synopsis "Emacs game where you have to type fast")
+ (description "The Typing of Emacs is a game for Emacs that
+forces you to type words correctly as fast as possible, otherwise
+you will die. The game builds the list of words from the active buffer.")
+ (license license:gpl2+))))
+
(define-public emacs-graphql
(package
(name "emacs-graphql")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add emacs-typing.,
guix-commits <=