guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 9b1e2c3c6b88069ee42f09a08ba55d2fa2067d58
Author: Anderson Torres <[email protected]>
AuthorDate: Sat Jun 13 22:30:50 2026 -0300

    gnu: emacs-vc-got: New package.
    
    * gnu/packages/emacs-xyz.scm (emacs-vc-got): New variable.
    
    Co-authored-by: Thanos Apollo <[email protected]>
    Signed-off-by: Liliana Marie Prikler <[email protected]>
---
 gnu/packages/emacs-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index aa59b98b9a..d94badea97 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -1599,6 +1599,29 @@ as a simple local version control mechanism.")
 configuration management system.")
       (license license:gpl3+))))
 
+(define-public emacs-vc-got
+  (package
+    (name "emacs-vc-got")
+    (version "1.2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://git.omarpolo.com/vc-got.git";)
+              (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "006fansniplx494jj818xn3nl6gxydgj8rk3jcbmkdpb221b7y7y"))))
+    (build-system emacs-build-system)
+    (arguments
+     (list #:tests? #f))                ; No test suite.
+    (home-page "https://projects.omarpolo.com/vc-got.html";)
+    (synopsis "VC backend for Game of Trees version control system")
+    (description
+     "This package provides an Emacs VC backend for the @acronym{got, Game of
+Trees} version control system.")
+    (license license:gpl3+)))
+
 (define-public emacs-vc-hgcmd
   (package
     (name "emacs-vc-hgcmd")

Reply via email to