diff options
author | NoƩ Lopez <noelopez@free.fr> | 2025-06-20 22:16:42 +0200 |
---|---|---|
committer | jgart <jgart@dismail.de> | 2025-06-20 18:17:10 -0400 |
commit | 9caebc7f6e09fa431d5945774626d1b62e6c87b2 (patch) | |
tree | b7387938a250ff57911f4e434f537f7db38b73d6 | |
parent | 5d6604a88e1dae62f56a196d5a8140d272f8e78c (diff) |
gnu: Add emacs-org-count-words.
* gnu/packages/emacs-xyz.scm (emacs-org-count-words): New variable.
Change-Id: Iddd53ff075612b65f4c441bb62bd8f9236c18f66
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 3f16342632..29803ef969 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -19581,6 +19581,30 @@ receive little if no maintenance and there is no guaranty that they are compatible with the Org stable version.") (license license:gpl3+))) +(define-public emacs-org-count-words + ;; No releases. + (let ((commit "df4f06905e3020106d6ceaada854ebd7f9a231d2") + (revision "0")) + (package + (name "emacs-org-count-words") + (version (git-version "0.1" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Elilif/org-count-words.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "12yxgkqv33i8hcgc5z033fhrar5l937kpsi36v4jffw6lr3wrlbv")))) + (build-system emacs-build-system) + (home-page "https://github.com/Elilif/org-count-words") + (synopsis "Word count in org-mode") + (description "This package calculates a precise word count in org-mode +by excluding unwanted elements such as code blocks, options, and drawers. The +results are displayed on the modeline.") + (license license:gpl3+)))) + (define-public emacs-org-texlive-collection (package (name "emacs-org-texlive-collection") |