guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/04: gnu: Add emacs-git-gutter-fringe.


From: guix-commits
Subject: 02/04: gnu: Add emacs-git-gutter-fringe.
Date: Mon, 14 Oct 2019 17:08:51 -0400 (EDT)

leungbk pushed a commit to branch master
in repository guix.

commit 2322c9458cafa9519ca044f78720607de9838e88
Author: Brian Leung <address@hidden>
Date:   Mon Oct 14 13:55:09 2019 -0700

    gnu: Add emacs-git-gutter-fringe.
    
    * gnu/packages/emacs-xyz.scm (emacs-git-gutter-fringe): New variable.
---
 gnu/packages/emacs-xyz.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index b6c7f52..09ade9e 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -2394,6 +2394,32 @@ Git, Mercurial, Subversion and Bazaar are supported, and 
many parts of the
 display and behaviour is easily customisable.")
     (license license:gpl3+)))
 
+(define-public emacs-git-gutter-fringe
+  (let ((commit "16226caab44174301f1659f7bf8cc67a76153445")
+        (revision "1"))
+    (package
+      (name "emacs-git-gutter-fringe")
+      (version (git-version "0.23" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/syohex/git-gutter-fringe.git";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "1y77gjl0yznamdj0f55d418zb75k22izisjg7ikvrfsl2yfqf3pm"))))
+      (build-system emacs-build-system)
+      (propagated-inputs
+       `(("emacs-git-gutter" ,emacs-git-gutter)
+         ("emacs-fringe-helper" ,emacs-fringe-helper)))
+      (home-page "https://github.com/syohex/git-gutter-fringe";)
+      (synopsis "See and manage hunks of text in a version control system")
+      (description
+       "This package extends @code{git-gutter} to use the fringe area of a
+window.")
+      (license license:gpl3+))))
+
 (define-public emacs-git-timemachine
   (package
     (name "emacs-git-timemachine")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]