guix_mirror_bot pushed a commit to branch master
in repository guix.
commit e776e1d4e957f98810d51f8cff8f374608d21662
Author: Anderson Torres <[email protected]>
AuthorDate: Sat Jun 13 22:53:01 2026 -0300
gnu: emacs-vc-jj: New package.
* gnu/packages/emacs-xyz.scm (emacs-vc-jj): New variable.
Co-authored-by: Thanos Apollo <[email protected]>
Signed-off-by: Liliana Marie Prikler <[email protected]>
---
gnu/packages/emacs-xyz.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index d94badea97..a6bc2a334b 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -1645,6 +1645,31 @@ repositories through the
server}. The main advantage compared to @code{vc-hg} is speed.")
(license license:gpl3+)))
+(define-public emacs-vc-jj
+ (package
+ (name "emacs-vc-jj")
+ (version "0.5")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://codeberg.org/emacs-jj-vc/vc-jj.el")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0wqvfw2mgzppq1r81iw3dnr0dfwvhsn7s0q4bg24njzg5zfr6zm2"))))
+ (build-system emacs-build-system)
+ (arguments
+ (list
+ #:tests? #f)) ; The tests are failing.
+ (propagated-inputs (list emacs-compat))
+ (home-page "https://codeberg.org/emacs-jj-vc/vc-jj.el")
+ (synopsis "Emacs VC backend for the Jujutsu version control system")
+ (description
+ "This package provides an Emacs VC backend for the Jujutsu version
+control system.")
+ (license license:gpl3+)))
+
(define-public emacs-telephone-line
(package
(name "emacs-telephone-line")