1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-14 02:50:45 +02:00

gnu: Add emacs-el-job.

* gnu/packages/emacs-xyz.scm (emacs-el-job): New variable.

Change-Id: Ic4ea3d2d84c24b592b9fde8723b48e6dd534cfbe
This commit is contained in:
Nicolas Goaziou 2024-12-24 11:50:08 +01:00
parent 33683d0c8e
commit ed642b38e6
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -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")