gnu: Add emacs-jack.

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

Change-Id: I92790c493016a312501e926bbfc4b274d954e26f
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
Suhail Singh 2024-10-29 23:15:05 -04:00 committed by Liliana Marie Prikler
parent f5f4978ec3
commit 7e25d04228
No known key found for this signature in database
GPG key ID: 442A84B8C70E2F87

View file

@ -11337,6 +11337,39 @@ (define-public emacs-anaconda-mode
documentation, enhancing the Python development experience within Emacs.")
(license license:gpl3+))))
(define-public emacs-jack
(let ((commit "3b4ea97fcc107d0ffd201ea695129af52f390113")
(revision "0"))
(package
(name "emacs-jack")
(version (git-version "1.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/tonyaldon/jack")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "1cizszj62ic41zc97glf2mdvm1kd95vdfg2dip3n2p2g0nlk2hjf"))))
(build-system emacs-build-system)
(arguments
(list
#:tests? #t
#:test-command #~(list "emacs"
"--batch"
"-l"
"jack-tests.el"
"-f"
"ert-run-tests-batch-and-exit")))
(home-page "https://jack.tonyaldon.com")
(synopsis "HTML generator library")
(description
"@code{jack} provides the function @code{jack-html} that takes a data
structure as input representing the HTML tree you want to generate and
generates it as a string. Please see the homepage for usage examples.")
(license license:gpl3+))))
(define-public emacs-jedi
(package
(name "emacs-jedi")