guix-commits
[Top][All Lists]
Advanced

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

04/04: gnu: Add emacs-git-link.


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

leungbk pushed a commit to branch master
in repository guix.

commit 914379a503e6e3124af7d80ce960641bf4862758
Author: Brian Leung <address@hidden>
Date:   Mon Oct 14 14:07:48 2019 -0700

    gnu: Add emacs-git-link.
    
    * gnu/packages/emacs-xyz.scm (emacs-git-link): New variable.
---
 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 9a80188..2a0c483 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -2420,6 +2420,31 @@ display and behaviour is easily customisable.")
 window.")
       (license license:gpl3+))))
 
+(define-public emacs-git-link
+  (package
+    (name "emacs-git-link")
+    (version "0.7.5")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/sshaw/git-link.git";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "04xa6lp8wkjb6zs096bf4sz124grcjj15xv1h009bmn2j95rggj6"))))
+    (build-system emacs-build-system)
+    (arguments
+     `(#:tests? #t
+       #:test-command '("make" "test")))
+    (home-page "https://github.com/sshaw/git-link";)
+    (synopsis "Create links for files and commits in GitHub/GitLab/etc. repos")
+    (description
+     "@code{git-link} returns the URL for the current buffer's file location
+at the current line number or active region.  @code{git-link-commit} returns
+the URL for a commit.  URLs are added to the kill ring.")
+    (license license:gpl3+)))
+
 (define-public emacs-apheleia
   (package
     (name "emacs-apheleia")



reply via email to

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