doomemacs/modules/tools/pass/packages.el
Henrik Lissner 6b6ea699f4
tools/pass: use latest version of auth-source-pass
The upstream version is several major versions (v5.0) ahead of the
built-in one (v2.0).
2019-06-11 08:07:25 +02:00

16 lines
519 B
EmacsLisp

;; -*- no-byte-compile: t; -*-
;;; tools/pass/packages.el
(package! pass)
(package! password-store)
(package! password-store-otp)
;; an older version of `auto-source-pass' is built into Emacs 26+, so we must
;; install the new version directly from the source and with a psuedonym.
(package! auth-source-pass-new
:recipe (auth-source-pass :fetcher github :repo "DamienCassou/auth-password-store"))
(when (featurep! :completion ivy)
(package! ivy-pass))
(when (featurep! :completion helm)
(package! helm-pass))