gnu: Add emacs-taskrunner.

* gnu/packages/emacs-xyz.scm (emacs-taskrunner): New variable.

Signed-off-by: Oleg Pykhalov <go.wigust@gmail.com>
master
Brian Leung 2019-08-29 18:12:48 +02:00 committed by Oleg Pykhalov
parent ab46af1266
commit 611049b397
No known key found for this signature in database
GPG Key ID: 167F8EA5001AFA9C
1 changed files with 26 additions and 0 deletions

View File

@ -6341,6 +6341,32 @@ as well as features for editing search results.")
"This Emacs library provides a Helm interface for Projectile.")
(license license:gpl3+)))
(define-public emacs-taskrunner
(let ((commit "3afd4a546d42339543d3d4e51b175fc3e82b3358")
(revision "1"))
(package
(name "emacs-taskrunner")
(version (git-version "0.6" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/emacs-taskrunner/emacs-taskrunner.git")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"1lkdvmjn3alhqxq2i64sdr977sbw3g0b2670d9bwyzi67qh0jxrv"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-async" ,emacs-async)
("emacs-projectile" ,emacs-projectile)))
(home-page "https://github.com/emacs-taskrunner/emacs-taskrunner")
(synopsis "Retrieve tasks from various build systems and task-runners")
(description "This package parses Makefiles and build-system files for
multiple project types.")
(license license:gpl3+))))
(define-public emacs-helm-make
(let ((commit "feae8df22bc4b20705ea08ac9adfc2b43bb348d0")
(revision "1"))