guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/06: gnu: Add emacs-pass.


From: Ludovic Courtès
Subject: 02/06: gnu: Add emacs-pass.
Date: Sun, 8 Apr 2018 17:32:41 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit ab4d1c26121ef27503b5239bc682b6f131302092
Author: Konrad Hinsen <address@hidden>
Date:   Wed Apr 4 20:16:09 2018 +0200

    gnu: Add emacs-pass.
    
    * gnu/packages/emacs.scm (emacs-pass): New variable.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/emacs.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index ac69cfa..cb72284 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -7494,6 +7494,30 @@ used with SGML-like languages: XML, HTML, XHTML, XSL, 
etc.")
 standard Unix password manager\").")
     (license license:gpl2+)))
 
+(define-public emacs-pass
+  (package
+    (name "emacs-pass")
+    (version "1.7")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "https://github.com/NicolasPetton/pass/archive/";
+                    version ".tar.gz"))
+              (sha256
+               (base32
+                "0zlx9v6z0q3w9qhq9bq6vb7sli4c9x7qccm2wq55j0nw7bwy2yvj"))
+              (file-name (string-append name "-" version ".tar.gz"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     `(("emacs-password-store" ,emacs-password-store)
+       ("emacs-f" ,emacs-f)))
+    (home-page "https://github.com/NicolasPetton/pass";)
+    (synopsis "Major mode for @file{password-store.el}")
+    (description "This is a major mode for managing password-store (pass)
+keychains.  The keychain entries are displayed in a directory-like structure
+and can be consulted and modified.")
+    (license license:gpl3+)))
+
 (define-public emacs-evil-anzu
   (package
     (name "emacs-evil-anzu")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]