mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-19 21:27:37 -05:00
gnu: Add emacs-autocrypt.
* gnu/packages/emacs-xyz.scm (emacs-autocrypt): New variable. Signed-off-by: Arun Isaac <arunisaac@systemreboot.net>
This commit is contained in:
parent
5ab679f4da
commit
fcba63f8b7
1 changed files with 28 additions and 0 deletions
|
@ -12297,6 +12297,34 @@ (define-public emacs-auto-complete
|
|||
extensibility.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-autocrypt
|
||||
(let ((commit "5b55f8d37545e9c441788627c17e350d7edf4055")
|
||||
(revision "0"))
|
||||
(package
|
||||
(name "emacs-autocrypt")
|
||||
(version (git-version "0.4.0" revision commit))
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://git.sr.ht/~zge/autocrypt")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0b06xnjkgwjpxl96mdi674pmvdaiwncifi1a30wxhl1dwr7kr084"))))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://git.sr.ht/~zge/autocrypt")
|
||||
(synopsis "Autocrypt implementation for Emacs")
|
||||
(description "@code{emacs-autocrypt} is an implementation of
|
||||
Autocrypt (@url{https://autocrypt.org/}) for various Emacs MUAs. Autocrypt is
|
||||
a cryptographic protocol for email clients aiming to simplify key exchange and
|
||||
encryption.
|
||||
|
||||
Run @code{M-x autocrypt-create-account} to initialize an autocrypt key, and
|
||||
add @code{autocrypt-mode} to your MUA's hooks (@code{gnus-mode-hook},
|
||||
@code{message-mode-hook}, ...) to activate its usage.")
|
||||
(license license:cc0))))
|
||||
|
||||
(define-public emacs-nginx-mode
|
||||
(package
|
||||
(name "emacs-nginx-mode")
|
||||
|
|
Loading…
Reference in a new issue