1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 02:20:53 +02:00

gnu: Add emacs-magit-tbdiff.

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

Change-Id: I706875beba2c896962e8c811b7bc6b1e45e99c93
Signed-off-by: Ian Eure <ian@retrospec.tv>
This commit is contained in:
Liam Hupfer 2025-02-23 13:17:22 -06:00 committed by Ian Eure
parent 0afe31a136
commit 80dd91f957
No known key found for this signature in database
GPG key ID: 8499AC88F1A71CF2

View file

@ -2058,6 +2058,29 @@ process, passing on the arguments as command line arguments.")
"Magit-annex adds a few git-annex operations to the Magit interface.")
(license license:gpl3+)))
(define-public emacs-magit-tbdiff
(package
(name "emacs-magit-tbdiff")
(version "1.2.0")
(home-page "https://github.com/magit/magit-tbdiff")
(source
(origin
(method git-fetch)
(uri (git-reference
(url home-page)
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1jh6wspb6ijmkqvyaswqj60ixpgjj2ijcf0b53q48pfs5dwc97p4"))))
(build-system emacs-build-system)
(propagated-inputs (list emacs-magit))
(synopsis "Magit extension for range diffs")
(description
"Magit-tbdiff provides a Magit interface to @code{git-range-diff} (and its
third-party predecessor @code{git-tbdiff}), a Git subcommand for comparing two
versions of a topic branch.")
(license license:gpl3+)))
(define-public emacs-malyon
(package
(name "emacs-malyon")