stash

Simple password manager shell script
Log | Files | Refs | README

commit f71553bbc412bfa989fb6ef51fb9a186fcd5521b
parent 655847d143f24f1f4d5181998b8e74e031849a0e
Author: Luke Willis <lukejw@loquat.dev>
Date:   Tue,  9 Dec 2025 13:56:27 -0500

Fixed incorrect wrapper shebang

Diffstat:
Mguix.scm | 8+++++---
1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/guix.scm b/guix.scm @@ -6,6 +6,7 @@ (gnu packages) (gnu packages authentication) (gnu packages base) + (gnu packages bash) (gnu packages golang-crypto) (gnu packages shells) (gnu packages version-control) @@ -40,7 +41,7 @@ (define stash (package (name "stash") - (version "0.1.0") + (version "0.1.0-1") ;; Use local directory as source (source (local-file (dirname (current-filename)) #:recursive? #t)) (build-system trivial-build-system) @@ -68,12 +69,13 @@ (mkdir-p bin-dir) (copy-script (string-append (assoc-ref %build-inputs "source") "/sta.sh") bin) - (wrap-program bin + (wrap-program bin #:sh (get-input-bin "bash-minimal" "bash") (wrapper-helper "TOFI" (get-input-bin "tofi" "tofi")) (wrapper-helper "AGE" (get-input-bin "age" "age")) (wrapper-helper "AGEKEYGEN" (get-input-bin "age" "age-keygen")) (wrapper-helper "OATHTOOL" (get-input-bin "oath-toolkit" "oathtool"))))))) - (inputs (list dash-w-sh-symlink + (inputs (list bash-minimal ;; Needed for wrap-program + dash-w-sh-symlink tofi age-with-stdin-passphrase oath-toolkit))