guix-commits
[Top][All Lists]
Advanced

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

05/10: gnu: Add emacs-helm-ls-git.


From: Ludovic Courtès
Subject: 05/10: gnu: Add emacs-helm-ls-git.
Date: Mon, 11 Jun 2018 09:19:19 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 1e75852629e34af5b918f82b6f379caab2b8cb3e
Author: Pierre Neidhardt <address@hidden>
Date:   Fri Jun 1 09:53:42 2018 +0200

    gnu: Add emacs-helm-ls-git.
    
    * gnu/packages/emacs.scm (emacs-helm-ls-git): New variable.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/emacs.scm | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index d893482..8836dd0 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -11050,3 +11050,40 @@ See @code{helm-exwm-switch-browser} for an example.")
       (description
        "This integrates Flycheck with Helm.")
       (license license:gpl3+))))
+
+(define-public emacs-helm-ls-git
+  (let ((commit "76654c776a7f6e2e5290645e748aac2a746f7daa"))
+    (package
+      (name "emacs-helm-ls-git")
+      (version (git-version "1.9.1" "1" commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/emacs-helm/helm-ls-git";)
+               (commit commit)))
+         (file-name (string-append name "-" version "-checkout"))
+         (sha256
+          (base32
+           "0vsq1n3xl3ghy5zik2scm7jrs501n4kybdqd6yw6j0cv4jxdqbr0"))))
+      (build-system emacs-build-system)
+      (propagated-inputs `(("emacs-helm" ,emacs-helm)))
+      (home-page "https://github.com/emacs-helm/helm-ls-git";)
+      (synopsis "Helm interface for listing the files in a Git repository")
+      (description
+       "This package provides a Helm interface for Git files.
address@hidden
address@hidden Display the open buffers in project.
address@hidden Display a status source showing state of project (modified files 
etc.).
address@hidden Display a list of all files in project under git control.
address@hidden Quickly look at diffs of modified files.
address@hidden Allow switching to @code{git status} with your preferred frontend
+(vc-dir, Magit,etc.).
address@hidden Full integration of git-grep, also allow usage of 
@code{helm-grep} (you
+can use ack-grep instead of grep).
address@hidden Integrate usage of gid from id-utils.
address@hidden Full integration with @code{helm-find-files}, allow you to browse
+projects unrelated to current-buffer.
address@hidden In addition, all actions of type files and buffers are provided.
address@hidden itemize\n")
+      (license license:gpl3+))))



reply via email to

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