[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/16: gnu: Add emacs-speed-type.
From: |
guix-commits |
Subject: |
01/16: gnu: Add emacs-speed-type. |
Date: |
Sat, 2 Sep 2023 17:48:59 -0400 (EDT) |
ngz pushed a commit to branch master
in repository guix.
commit bdb657d499e5be27287e71c0feadd1ec41d12d2a
Author: Abhiseck Paira <abhiseckpaira@disroot.org>
AuthorDate: Sat Jul 15 12:01:16 2023 +0530
gnu: Add emacs-speed-type.
* gnu/packages/emacs-xyz.scm (emacs-speed-type): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
gnu/packages/emacs-xyz.scm | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index dc2998a217..0f32caa756 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -1950,6 +1950,45 @@ 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-speed-type
+ (package
+ (name "emacs-speed-type")
+ (version "1.3")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/dakra/speed-type")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0nnvk3qnn61hg5rgwpiy1dqg6sqfh1m5256sbsk2pwrdmk54k85k"))))
+ (build-system emacs-build-system)
+ (arguments
+ (list
+ #:tests? #true
+ #:test-command
+ #~(list "emacs" "-Q" "--batch" "-L" "."
+ "-l" "test-speed-type.el"
+ "-f" "ert-run-tests-batch-and-exit")
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-before 'check 'skip-failing-test
+ ;; This test requires an internet connection.
+ (lambda _
+ (substitute* "test-speed-type.el"
+ (("\\(ert-deftest speed-type--retrieve-test .*" all)
+ (string-append all " (skip-unless nil)"))))))))
+ (propagated-inputs (list emacs-compat))
+ (home-page "https://github.com/dakra/speed-type")
+ (synopsis "Practice touch/speed typing in GNU Emacs.")
+ (description
+ "Speed Type allows you to practice your touch typing skills. You can
+test yourself by typing snippets from online books or use any piece of text or
+code you have in Emacs. Speed Type keeps track of your stats (WPM, CPM,
+accuracy) while you are typing.")
+ (license license:gpl3+)))
+
(define-public emacs-graphql
(let ((commit "b57b5ca5d2d0837e1fb4a4f30c051d5f3e643f0f")) ;version bump
(package
- branch master updated (771cbf2ab2 -> 4818ad5ba2), guix-commits, 2023/09/02
- 04/16: gnu: emacs-eshell-prompt-extras: Update to 1.1., guix-commits, 2023/09/02
- 05/16: gnu: emacs-exec-path-from-shell: Update to 2.1., guix-commits, 2023/09/02
- 01/16: gnu: Add emacs-speed-type.,
guix-commits <=
- 02/16: gnu: emacs-eldev: Update to 1.6., guix-commits, 2023/09/02
- 11/16: gnu: emacs-ibuffer-projectile: Update to 0.4., guix-commits, 2023/09/02
- 10/16: gnu: emacs-ibrowse: Update to 0.2.3., guix-commits, 2023/09/02
- 03/16: gnu: emacs-elfeed-score: Update to 1.2.7., guix-commits, 2023/09/02
- 06/16: gnu: emacs-haskell-mode: Update to 17.4., guix-commits, 2023/09/02
- 08/16: gnu: emacs-hl-todo: Update to 3.6.0., guix-commits, 2023/09/02
- 09/16: gnu: emacs-howm: Update to 1.5.0., guix-commits, 2023/09/02
- 13/16: gnu: emacs-ibuffer-vc: Update to 0.12., guix-commits, 2023/09/02
- 14/16: gnu: emacs-magit-todos: Update to 1.7., guix-commits, 2023/09/02
- 07/16: gnu: emacs-helm: Update to 3.9.4., guix-commits, 2023/09/02