diff options
author | Liam Hupfer <liam@hpfr.net> | 2025-02-23 13:17:22 -0600 |
---|---|---|
committer | Ian Eure <ian@retrospec.tv> | 2025-03-01 09:10:15 -0800 |
commit | 80dd91f957071100a3fc422eecc7db789228c178 (patch) | |
tree | e20be2013dd63cc9f5ad3c632ad2a80b30615645 | |
parent | 0afe31a1365e7df6cfae4ba34d9cadd82ac8cce5 (diff) | |
download | guix-80dd91f957071100a3fc422eecc7db789228c178.tar.gz guix-80dd91f957071100a3fc422eecc7db789228c178.zip |
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>
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index e19b77d6e3..ad0881d441 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -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") |