mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-14 19:10:49 +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:
parent
33683d0c8e
commit
ed642b38e6
1 changed files with 30 additions and 0 deletions
|
@ -9533,6 +9533,36 @@ files which are intended to be packages.")
|
||||||
(description "This package adds support for @code{proselint} in Flymake.")
|
(description "This package adds support for @code{proselint} in Flymake.")
|
||||||
(license license:gpl3+))))
|
(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
|
(define-public emacs-elisp-demos
|
||||||
(package
|
(package
|
||||||
(name "emacs-elisp-demos")
|
(name "emacs-elisp-demos")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue