wigust pushed a commit to branch master
in repository guix.

commit d3f7e5333b607060b9f1abbc85134bcdfbc76a4c
Author: Oleg Pykhalov <go.wig...@gmail.com>
Date:   Wed May 2 19:11:36 2018 +0300

    gnu: Add emacs-helm-firefox.
    
    * gnu/packages/emacs.scm (emacs-helm-firefox): New public variable.
---
 gnu/packages/emacs.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 909943f..47a29a4 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -9812,3 +9812,26 @@ perform regression test for packages that provide 
font-lock rules.")
 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+))))

Reply via email to