[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/05: gnu: Add emacs-helm-taskrunner.
From: |
guix-commits |
Subject: |
05/05: gnu: Add emacs-helm-taskrunner. |
Date: |
Fri, 30 Aug 2019 05:09:55 -0400 (EDT) |
wigust pushed a commit to branch master
in repository guix.
commit 5796215a73c3d104ebe497cf3d1a33c9f2c85e72
Author: Brian Leung <address@hidden>
Date: Thu Aug 29 18:13:12 2019 +0200
gnu: Add emacs-helm-taskrunner.
* gnu/packages/emacs-xyz.scm (emacs-helm-taskrunner): New variable.
Signed-off-by: Oleg Pykhalov <address@hidden>
---
gnu/packages/emacs-xyz.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 3024f78..9e94d3f 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -6394,6 +6394,33 @@ multiple project types.")
Makefile targets.")
(license license:gpl3+))))
+(define-public emacs-helm-taskrunner
+ (let ((commit "1910dac19cbc7bd4fd08b0faf9affd455339fbea")
+ (revision "1"))
+ (package
+ (name "emacs-helm-taskrunner")
+ (version (git-version "0.9" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/emacs-taskrunner/helm-taskrunner.git")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "182lmr858fx6rdhp1fy7kv8dvrhzcnxzwfck1q22s6xs8x85d5q7"))))
+ (build-system emacs-build-system)
+ (propagated-inputs
+ `(("emacs-helm" ,emacs-helm)
+ ("emacs-taskrunner" ,emacs-taskrunner)
+ ("emacs-projectile" ,emacs-projectile)))
+ (home-page "https://github.com/emacs-taskrunner/helm-taskrunner")
+ (synopsis "Retrieve build-system tasks using Helm")
+ (description "This package provides a Helm interface for selecting
+Makefile targets.")
+ (license license:gpl3+))))
+
(define-public emacs-helm-make
(let ((commit "feae8df22bc4b20705ea08ac9adfc2b43bb348d0")
(revision "1"))