gnu: Add emacs-eacl.

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

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
master
Brian Leung 2019-04-13 01:12:50 +02:00 committed by Ludovic Courtès
parent bbc22b984d
commit f446f789e6
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 23 additions and 0 deletions

View File

@ -15078,6 +15078,29 @@ well as an option for visually flashing evaluated s-expressions.")
SSH servers.")
(license license:gpl3+)))
(define-public emacs-eacl
(package
(name "emacs-eacl")
(version "2.0.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/redguardtoo/eacl")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"0ksn11sm3g1ja5lpjz3hrzzw8b480mfcb3q589m52qjgvvn5iyfv"))))
(build-system emacs-build-system)
(propagated-inputs
`(("emacs-ivy" ,emacs-ivy)))
(home-page "https://github.com/redguardtoo/eacl")
(synopsis "Auto-complete lines by using @code{grep} on a project")
(description "This package provides auto-completion cammands for single
and multiple lines of code in a project.")
(license license:gpl3+)))
(define-public emacs-semantic-refactor
;; The last release, 0.5, was made on 2015-07-26 and there have been 47
;; commits since then.