ngz pushed a commit to branch master
in repository guix.

commit ed642b38e6593d0877e7ad8581ffc56e0cd32f0b
Author: Nicolas Goaziou <[email protected]>
AuthorDate: Tue Dec 24 11:50:08 2024 +0100

    gnu: Add emacs-el-job.
    
    * gnu/packages/emacs-xyz.scm (emacs-el-job): New variable.
    
    Change-Id: Ic4ea3d2d84c24b592b9fde8723b48e6dd534cfbe
---
 gnu/packages/emacs-xyz.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 690b3f802d..7644c94dd2 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -9533,6 +9533,36 @@ files which are intended to be packages.")
       (description "This package adds support for @code{proselint} in 
Flymake.")
       (license license:gpl3+))))
 
+(define-public emacs-el-job
+  (package
+    (name "emacs-el-job")
+    (version "0.3.18")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/meedstrom/el-job";)
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1n9yg804z778cwcdrfvdf087nsy2x2g13kvrf47gg5zdp5wa1fnc"))))
+    (build-system emacs-build-system)
+    (arguments
+     (list #:tests? #true
+           #:test-command #~(list "emacs" "-Q" "--batch"
+                                  "-l" "el-job-test.el"
+                                  "-f" "ert-run-tests-batch-and-exit")))
+    (propagated-inputs (list emacs-compat))
+    (home-page "https://github.com/meedstrom/el-job";)
+    (synopsis "Split up the inputs of a function in many sub-processes")
+    (description
+     "This library gives you the tools to split up the inputs and run the
+function in many sub-processes (one per CPU core), then merges their outputs
+and passes it back to the current Emacs.  In the meantime, current Emacs does
+not hang at all.")
+    (license license:gpl3+)))
+
+
 (define-public emacs-elisp-demos
   (package
     (name "emacs-elisp-demos")

Reply via email to