gnu: emacs-password-store: Update to 2.3.0.
* gnu/packages/emacs-xyz.scm (emacs-password-store): Update to 2.3.0. [propagated-inputs]: Remove emacs-auth-source-pass. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
7decb4c394
commit
960647f016
1 changed files with 44 additions and 44 deletions
|
@ -20962,26 +20962,26 @@ close, copy, cut, paste, undo, redo.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-password-store
|
(define-public emacs-password-store
|
||||||
(let ((commit "918992c19231b33b3d4a3288a7288a620e608cb4")
|
|
||||||
(revision "1"))
|
|
||||||
(package
|
(package
|
||||||
(name "emacs-password-store")
|
(name "emacs-password-store")
|
||||||
;; The emacs package version does not match the password-store version,
|
;; The emacs package version does not match the password-store version,
|
||||||
;; even though it is part of the same repository. When updating, look
|
;; even though it is part of the same repository. When updating, look at
|
||||||
;; at the version declared in password-store.el.
|
;; the version declared in password-store.el.
|
||||||
(version (git-version "2.1.4" revision commit))
|
(version "2.3.0")
|
||||||
(source (origin
|
(source
|
||||||
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "git://git.zx2c4.com/password-store")
|
(url "git://git.zx2c4.com/password-store")
|
||||||
(commit commit)))
|
(commit "26d2dae04bb76a87be6960861c10432820cd5d55")))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0ni62f4pq96g0i0q66bch1dl9k4zqwhg7xaf746k3gbbqxcdh3vi"))))
|
"1pkx6pgkkpddxrshzq3x8ilfwqjw9gawnbbskcbssxc88wrpbcjb"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list #:phases
|
(list
|
||||||
|
#:phases
|
||||||
#~(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'extract-el-file
|
(add-after 'unpack 'extract-el-file
|
||||||
(lambda _
|
(lambda _
|
||||||
|
@ -20999,13 +20999,13 @@ close, copy, cut, paste, undo, redo.")
|
||||||
(inputs
|
(inputs
|
||||||
(list password-store))
|
(list password-store))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list emacs-auth-source-pass emacs-s emacs-with-editor))
|
(list emacs-s emacs-with-editor))
|
||||||
(home-page "https://git.zx2c4.com/password-store/tree/contrib/emacs")
|
(home-page "https://git.zx2c4.com/password-store/tree/contrib/emacs")
|
||||||
(synopsis "Password store (pass) support for Emacs")
|
(synopsis "Password store (pass) support for Emacs")
|
||||||
(description
|
(description
|
||||||
"This package provides functions for working with pass (\"the
|
"This package provides functions for working with pass (\"the
|
||||||
standard Unix password manager\").")
|
standard Unix password manager\").")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-password-store-otp
|
(define-public emacs-password-store-otp
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue