mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: pass-tomb: Update to 1.3-0.f4f34f4.
* gnu/packages/password-utils.scm (pass-tomb): Update to 1.3-0.f4f34f4. Change-Id: I45ead3c1e8475d38e76627f334afc2eb7440c8ec Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
51533dfc9b
commit
09950f17e7
1 changed files with 40 additions and 37 deletions
|
@ -1911,47 +1911,50 @@ encryption algorithm if so desired.")
|
||||||
(license license:gpl3))))
|
(license license:gpl3))))
|
||||||
|
|
||||||
(define-public pass-tomb
|
(define-public pass-tomb
|
||||||
(package
|
;; Latest release is 4 years old.
|
||||||
(name "pass-tomb")
|
(let ((commit "f4f34f4fc1ce7055fac74ad96686be49f7c28c349")
|
||||||
(version "1.3")
|
(revision "0"))
|
||||||
(source
|
(package
|
||||||
(origin
|
(name "pass-tomb")
|
||||||
(method git-fetch)
|
(version (git-version "1.3" revision commit))
|
||||||
(uri (git-reference
|
(source
|
||||||
(url "https://github.com/roddhjav/pass-tomb")
|
(origin
|
||||||
(commit (string-append "v" version))))
|
(method git-fetch)
|
||||||
(file-name (git-file-name name version))
|
(uri (git-reference
|
||||||
(sha256
|
(url "https://github.com/roddhjav/pass-tomb")
|
||||||
(base32 "1sjkbdm2i3v77nbnap8sypbfdqwxckc8h66g3ixjnyr6cqgcrdli"))))
|
(commit commit)))
|
||||||
(build-system gnu-build-system)
|
(file-name (git-file-name name version))
|
||||||
(arguments
|
(sha256
|
||||||
`(#:make-flags
|
(base32 "0cwik9v5pspyi0kgq6d2kaqy6gj3dgfn97nbjcbkbrbbc7syyd3v"))))
|
||||||
(let ((out (assoc-ref %outputs "out")))
|
(build-system gnu-build-system)
|
||||||
(list (string-append "PREFIX=" out)
|
(arguments
|
||||||
(string-append "BASHCOMPDIR=" out "/etc/bash_completion.d")))
|
`(#:make-flags
|
||||||
#:test-target "tests"
|
(let ((out (assoc-ref %outputs "out")))
|
||||||
;; tests are very dependent on system state (swap partition) and require
|
(list (string-append "PREFIX=" out)
|
||||||
;; access to /tmp/zsh which is not in the build container.
|
(string-append "BASHCOMPDIR=" out "/etc/bash_completion.d")))
|
||||||
#:tests? #f
|
#:test-target "tests"
|
||||||
#:phases
|
;; tests are very dependent on system state (swap partition) and require
|
||||||
(modify-phases %standard-phases
|
;; access to /tmp/zsh which is not in the build container.
|
||||||
(add-after 'unpack 'set-tomb-path
|
#:tests? #f
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
#:phases
|
||||||
(let ((tomb (assoc-ref inputs "tomb")))
|
(modify-phases %standard-phases
|
||||||
(substitute* "tomb.bash"
|
(add-after 'unpack 'set-tomb-path
|
||||||
((":-tomb")
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(string-append ":-" tomb "/bin/tomb"))))))
|
(let ((tomb (assoc-ref inputs "tomb")))
|
||||||
(delete 'configure))))
|
(substitute* "tomb.bash"
|
||||||
(inputs
|
((":-tomb")
|
||||||
(list tomb))
|
(string-append ":-" tomb "/bin/tomb"))))))
|
||||||
(home-page "https://github.com/roddhjav/pass-tomb")
|
(delete 'configure))))
|
||||||
(synopsis "Pass extension keeping the tree of passwords encrypted")
|
(inputs
|
||||||
(description "Pass-tomb provides a convenient solution to put your
|
(list tomb))
|
||||||
|
(home-page "https://github.com/roddhjav/pass-tomb")
|
||||||
|
(synopsis "Pass extension keeping the tree of passwords encrypted")
|
||||||
|
(description "Pass-tomb provides a convenient solution to put your
|
||||||
password store in a Tomb and then keep your password tree encrypted when you
|
password store in a Tomb and then keep your password tree encrypted when you
|
||||||
are not using it. It uses the same GPG key to encrypt passwords and tomb,
|
are not using it. It uses the same GPG key to encrypt passwords and tomb,
|
||||||
therefore you don't need to manage more key or secret. Moreover, you can ask
|
therefore you don't need to manage more key or secret. Moreover, you can ask
|
||||||
pass-tomb to automatically close your store after a given time.")
|
pass-tomb to automatically close your store after a given time.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public pass-coffin
|
(define-public pass-coffin
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue