1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-15 19:40:46 +02:00

gnu: emacs-org-mime: Fix tests.

* gnu/packages/emacs-xyz.scm (emacs-org-mime)[arguments]: Add #:test-command.
<#:phases>: Add ‘set-home’.
[native-inputs]: Add emacs-htmlize.
This commit is contained in:
Liliana Marie Prikler 2025-03-22 19:59:06 +01:00
parent 31bc9be713
commit 014ecb279e
No known key found for this signature in database
GPG key ID: 442A84B8C70E2F87

View file

@ -12987,6 +12987,15 @@ cards created in Org mode.")
(sha256 (sha256
(base32 "12144hhiygvbx2ws01b47z4wqqd5jfbpxx4cn503mkqwcxzvpvgb")))) (base32 "12144hhiygvbx2ws01b47z4wqqd5jfbpxx4cn503mkqwcxzvpvgb"))))
(build-system emacs-build-system) (build-system emacs-build-system)
(arguments (list #:test-command
#~(list "emacs" "--batch" "-l" "org-mime.el"
"-l" "htmlize" "-l" "test/org-mime-tests.el")
#:phases
#~(modify-phases %standard-phases
(add-before 'check 'set-home
(lambda _
(setenv "HOME" (getenv "TMPDIR")))))))
(native-inputs (list emacs-htmlize))
(home-page "https://github.com/org-mime/org-mime") (home-page "https://github.com/org-mime/org-mime")
(synopsis "Send HTML email using Org mode HTML export") (synopsis "Send HTML email using Org mode HTML export")
(description (description