all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Alberto Eleuterio Flores Guerrero <barbanegra+guix@posteo.mx>
To: 40619@debbugs.gnu.org
Subject: [bug#40619] [PATCH] gnu: Add emacs-typit.
Date: Mon, 13 Apr 2020 22:52:36 -0500	[thread overview]
Message-ID: <20200414035236.22556-1-barbanegra+guix@posteo.mx> (raw)

* gnu/packages/emacs-xyz.scm (emacs-typit): New variable.
---
 gnu/packages/emacs-xyz.scm | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index a974d885e3..ea87802723 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -596,6 +596,44 @@ Gitea, Gogs and Bitbucket.  It abstracts access to API resources using only a
 handful of functions that are not resource-specific.")
       (license license:gpl3+))))
 
+(define-public emacs-typit
+  (package
+    (name "emacs-typit")
+    (version "0.2.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/mrkkrp/typit.git")
+             (commit "a4e3147dedac5535bdc8b06aca00f34f14f26e35")))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "0hbnwrhxj9wwjvxsk372ffgjqfkb3ljxhgi5h7wps2r15dxfvf3w"))))
+    (build-system emacs-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-after 'install 'install-dictionaries
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let* ((out (assoc-ref outputs "out"))
+                    (site-lisp
+                     (string-append
+                      out "/share/emacs/site-lisp/dict")))
+               (mkdir-p site-lisp)
+               (copy-recursively "dict" site-lisp)
+               #t))))))
+    (propagated-inputs
+     `(("emacs-f" ,emacs-f)
+       ("emacs-mmt" ,emacs-mmt)))
+    (home-page "https://github.com/mrkkrp/typit")
+    (synopsis "Typing game for Emacs with two difficulties")
+    (description "@code{emacs-typit} is a typing game
+for Emacs.  Words that are picked randomly from the most
+frequent words in language you're practicing, until time
+is up.")
+    (license license:gpl3)))
+
 (define-public emacs-scribble-mode
   (let ((commit "217945d54de5e4bb207033f2116baa28f5c5ecf2")
         (revision "2"))
-- 
2.26.0

             reply	other threads:[~2020-04-14  4:20 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-14  3:52 Alberto Eleuterio Flores Guerrero [this message]
2020-04-14  9:15 ` bug#40619: [PATCH] gnu: Add emacs-typit Nicolas Goaziou

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200414035236.22556-1-barbanegra+guix@posteo.mx \
    --to=barbanegra+guix@posteo.mx \
    --cc=40619@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.