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

gnu: Add emacs-doctest.

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

Change-Id: I159da3e999f3b5c31a196f3af97ca96ca66959ff
This commit is contained in:
Danny Milosavljevic 2025-03-25 23:49:57 +01:00
parent dbef60edb3
commit e548e4c4f9
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -22266,6 +22266,27 @@ using ERT. It assumes a certain test structure setup and can therefore make
running tests easier.") running tests easier.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public emacs-doctest
(let ((commit "0620ab6283a4e4302761ac415354b0b2b889dcda")
(revision "0"))
(package
(name "emacs-doctest")
(version (git-version "0" revision commit))
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/ag91/doctest.git")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"1g759f1ypw00vqbbcxa8yxf51bdmlrfdxybgjf4fmzzhvfbcpc4d"))))
(build-system emacs-build-system)
(synopsis "emacs-doctest")
(description "This package provides doctests for emacs elisp.")
(home-page "https://github.com/ag91/doctest")
(license license:gpl3+))))
(define-public emacs-xtest (define-public emacs-xtest
(package (package
(name "emacs-xtest") (name "emacs-xtest")