From: Christian Miller via Guix-patches via <guix-patches@gnu.org>
To: 67123@debbugs.gnu.org
Cc: Christian Miller <christian.miller@dadoes.de>
Subject: [bug#67123] [PATCH] gnu: Add pass-coffin
Date: Sat, 11 Nov 2023 19:41:22 +0100 [thread overview]
Message-ID: <a4f0c32dbef8aed66617b9cdd7ea47d5a3114a63.1699728082.git.christian.miller@dadoes.de> (raw)
* gnu/packages/password-utils.scm (pass-coffin): New variable.
Change-Id: I2fdf6c755b9b75780c5a3c0304e5b961a15640a4
---
gnu/packages/password-utils.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm
index 385bd64985..f9767b91af 100644
--- a/gnu/packages/password-utils.scm
+++ b/gnu/packages/password-utils.scm
@@ -39,6 +39,7 @@
;;; Copyright © 2022 ( <paren@disroot.org>
;;; Copyright © 2022 Nicolas Graves <ngraves@ngraves.fr>
;;; Copyright © 2022 Petr Hodina <phodina@protonmail.com>
+;;; Copyright © 2023 Christian Miller <christian.miller@dadoes.de>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1567,6 +1568,37 @@ (define-public pass-tomb
pass-tomb to automatically close your store after a given time.")
(license license:gpl3+)))
+(define-public pass-coffin
+ (package
+ (name "pass-coffin")
+ (version "1.2.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/ayushnix/pass-coffin")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1486ikwsdjsj74qf949vk47r8mfp2mbbdc3scs8786nnnkhzc89n"))))
+ (build-system gnu-build-system)
+ (arguments
+ (list
+ #:tests? #f ;No tests
+ #:make-flags #~(list (string-append "PREFIX="
+ #$output)
+ (string-append "BASHCOMPDIR="
+ #$output "/etc/bash_completion.d"))
+ #:phases #~(modify-phases %standard-phases
+ (delete 'configure))))
+ (inputs (list password-store tar))
+ (home-page "https://github.com/ayushnix/pass-coffin")
+ (synopsis "Pass extension to keep the tree of passwords encrypted")
+ (description
+ "Pass-coffin is a pass extension that hides the password store
+data inside a GPG encrypted file, which we'll call a coffin.")
+ (license license:gpl3)))
+
(define-public xkcdpass
(package
(name "xkcdpass")
base-commit: af6105afc67a15a491a0a4fd18a28c9f801a0b94
--
2.41.0
next reply other threads:[~2023-11-12 11:14 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-11-11 18:41 Christian Miller via Guix-patches via [this message]
2024-02-24 8:39 ` [bug#67123] [PATCH v2 0/1] gnu: Add pass-coffin Steve George
2024-02-24 8:39 ` [bug#67123] [PATCH v2 1/1] " Steve George
2024-02-24 10:23 ` [bug#67123] [PATCH v2 0/1] " Clément Lassieur
2024-02-26 15:51 ` bug#67123: Close Andreas Enge
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=a4f0c32dbef8aed66617b9cdd7ea47d5a3114a63.1699728082.git.christian.miller@dadoes.de \
--to=guix-patches@gnu.org \
--cc=67123@debbugs.gnu.org \
--cc=christian.miller@dadoes.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.