gnu: Add emacs-helm-firefox.

* gnu/packages/emacs.scm (emacs-helm-firefox): New public variable.
This commit is contained in:
Oleg Pykhalov 2018-05-02 19:11:36 +03:00
parent 8f052df26c
commit d3f7e5333b
No known key found for this signature in database
GPG key ID: 7246E11C69B79569

View file

@ -9812,3 +9812,26 @@ (define-public emacs-grep-context
compilation/grep buffers. Works with @code{wgrep}, @code{ack}, @code{ag},
@code{ivy}.")
(license license:gpl3+))))
(define-public emacs-helm-firefox
(let ((commit "0ad34b7b5abc485a86cae6920c14de861cbeb085")
(revision "1"))
(package
(name "emacs-helm-firefox")
(version (string-append "0.0.1" "-" revision "."
(string-take commit 7)))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/emacs-helm/helm-firefox.git")
(commit commit)))
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32
"08mjsi2f9s29fkk35cj1rrparjnkm836qmbfdwdz7y51f9varjbs"))))
(build-system emacs-build-system)
(home-page "https://github.com/emacs-helm/helm-firefox")
(synopsis "Display firefox bookmarks with Emacs Helm interface")
(description "Display firefox bookmarks with Emacs Helm interface")
(license license:gpl3+))))