Archived
1
0
Fork 0

gnu: emacs-password-store: 2.1.4-1.918992c [security fix].

Includes a fix to no longer store clear passwords in a temporary file, see
commit 7aa17d099577730d2d65332896b74d5865b22abf for details.

* gnu/packages/emacs-xyz.scm (emacs-password-store): Update to
2.1.4-1.918992c.
[propagated-inputs]: Remove emacs-f, add emacs-auth-source-pass.
This commit is contained in:
Pierre Langlois 2021-03-10 09:12:02 +00:00
parent 4a8b529ce1
commit fd2751f89f
No known key found for this signature in database
GPG key ID: A8FC9E447F4F7D54

View file

@ -15041,17 +15041,23 @@ 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")
(version "1.7.3") ;; The emacs package version does not match the password-store version,
;; even though it is part of the same repository. When updating, look
;; at the version declared in password-store.el.
(version (git-version "2.1.4" revision commit))
(source (origin (source (origin
(method url-fetch) (method git-fetch)
(uri (uri (git-reference
(string-append "https://git.zx2c4.com/password-store/snapshot/" (url "git://git.zx2c4.com/password-store")
"password-store-" version ".tar.xz")) (commit commit)))
(sha256 (sha256
(base32 (base32
"1x53k5dn3cdmvy8m4fqdld4hji5n676ksl0ql4armkmsds26av1b")))) "0ni62f4pq96g0i0q66bch1dl9k4zqwhg7xaf746k3gbbqxcdh3vi"))
(file-name (git-file-name name version))))
(build-system emacs-build-system) (build-system emacs-build-system)
(arguments (arguments
`(#:phases `(#:phases
@ -15064,7 +15070,7 @@ close, copy, cut, paste, undo, redo.")
(delete-file-recursively "src") (delete-file-recursively "src")
(delete-file-recursively "tests")))))) (delete-file-recursively "tests"))))))
(propagated-inputs (propagated-inputs
`(("emacs-f" ,emacs-f) `(("emacs-auth-source-pass" ,emacs-auth-source-pass)
("emacs-s" ,emacs-s) ("emacs-s" ,emacs-s)
("emacs-with-editor" ,emacs-with-editor) ("emacs-with-editor" ,emacs-with-editor)
("password-store" ,password-store))) ("password-store" ,password-store)))
@ -15073,7 +15079,7 @@ close, copy, cut, paste, undo, redo.")
(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:gpl2+))) (license license:gpl2+))))
(define-public emacs-auth-source-pass (define-public emacs-auth-source-pass
(let ((commit "847a1f54ed48856b4dfaaa184583ef2c84173edf") (let ((commit "847a1f54ed48856b4dfaaa184583ef2c84173edf")