[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#31059] [PATCH] gnu: Add emacs-pass.
From: |
Konrad Hinsen |
Subject: |
[bug#31059] [PATCH] gnu: Add emacs-pass. |
Date: |
Wed, 04 Apr 2018 20:16:09 +0200 |
* gnu/packages/emacs.scm (emacs-pass): New variable.
---
gnu/packages/emacs.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 185dc1c64..e8475e9d7 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -7494,3 +7494,27 @@ Anzu.zim.")
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"))))
+ (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+)))
--
2.17.0