From 6b6ea699f402c0848180189f518b3d730d2e11af Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 11 Jun 2019 08:07:25 +0200 Subject: [PATCH] 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). --- modules/tools/pass/packages.el | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/modules/tools/pass/packages.el b/modules/tools/pass/packages.el index 8c92e6435..cb4e52e36 100644 --- a/modules/tools/pass/packages.el +++ b/modules/tools/pass/packages.el @@ -5,9 +5,10 @@ (package! password-store) (package! password-store-otp) -;; `auto-source-pass' is built into Emacs 26+ -(unless EMACS26+ - (package! auth-source-pass)) +;; 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))