[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/06: gnu: Add emacs-helm-projectile.
From: |
Ludovic Courtès |
Subject: |
04/06: gnu: Add emacs-helm-projectile. |
Date: |
Thu, 18 May 2017 08:23:09 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit f69c29f76d250897f70f6e189dfc2b0e4b8e4fa3
Author: Kyle Meyer <address@hidden>
Date: Wed May 17 15:14:32 2017 -0400
gnu: Add emacs-helm-projectile.
* gnu/packages/emacs.scm (emacs-helm-projectile): New variable.
Signed-off-by: Ludovic Courtès <address@hidden>
---
gnu/packages/emacs.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 66eaea5..4a0d20c 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -3411,6 +3411,31 @@ not tied in the trap of backward compatibility.")
for search-based navigation of buffers.")
(license license:gpl2+)))
+(define-public emacs-helm-projectile
+ (package
+ (name "emacs-helm-projectile")
+ (version "0.14.0")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://github.com/bbatsov/helm-projectile/archive/v"
+ version
+ ".tar.gz"))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "19cfmilqh8kbab3b2hmx6lyrj73q6vfmn3p730x95g23iz16mnd5"))))
+ (build-system emacs-build-system)
+ (propagated-inputs
+ `(("emacs-dash" ,emacs-dash)
+ ("emacs-helm" ,emacs-helm)
+ ("emacs-projectile" ,emacs-projectile)))
+ (home-page "https://github.com/bbatsov/helm-projectile")
+ (synopsis "Helm integration for Projectile")
+ (description
+ "This Emacs library provides a Helm interface for Projectile.")
+ (license license:gpl3+)))
+
(define-public emacs-cider
(package
(name "emacs-cider")
- branch master updated (7fb6a9d -> 27c81fc), Ludovic Courtès, 2017/05/18
- 03/06: gnu: Add emacs-helm-swoop., Ludovic Courtès, 2017/05/18
- 04/06: gnu: Add emacs-helm-projectile.,
Ludovic Courtès <=
- 02/06: gnu: emacs-helm: Update to 2.7.0., Ludovic Courtès, 2017/05/18
- 01/06: gnu: emacs-async: Update to 1.9.2., Ludovic Courtès, 2017/05/18
- 06/06: lint: inputs-should-be-native: Add "cmake"., Ludovic Courtès, 2017/05/18
- 05/06: gnu: Add gemma., Ludovic Courtès, 2017/05/18