From ad27cab700259644203cbbc693fe014d2aa66d39 Mon Sep 17 00:00:00 2001 From: Rutherther Date: Thu, 15 Aug 2024 22:29:11 +0200 Subject: [PATCH] feat: add password store wrapped with wl deps --- home/home-configuration.scm | 2 +- home/modules/ruther/home/passwords.scm | 27 ++++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 home/modules/ruther/home/passwords.scm diff --git a/home/home-configuration.scm b/home/home-configuration.scm index 5ff31dd..933bbbe 100644 --- a/home/home-configuration.scm +++ b/home/home-configuration.scm @@ -51,7 +51,7 @@ "git" "openssh" ;; Passwords - "gnupg" "password-store" "pass-otp" + "gnupg" "password-store-wl" "pass-otp" ;; DBus services "mako" diff --git a/home/modules/ruther/home/passwords.scm b/home/modules/ruther/home/passwords.scm new file mode 100644 index 0000000..894c233 --- /dev/null +++ b/home/modules/ruther/home/passwords.scm @@ -0,0 +1,27 @@ +(define-module (ruther home passwords) + #:use-module (guix gexp) + #:use-module (guix utils) + #:use-module (guix packages) + #:use-module (ruther packages wayland) + #:use-module (gnu packages xdisorg) + #:use-module (gnu packages password-utils)) + +(define-public password-store-wl + (package/inherit password-store + (name "password-store-wl") + (inputs (modify-inputs (package-inputs password-store) + (append dmenu-wl ydotool))) + (arguments + (substitute-keyword-arguments (package-arguments password-store) + ((#:phases original-phases) + #~(modify-phases #$original-phases + (add-after 'patch-passmenu-path 'patch-passmenu-wl-path + (lambda* (#:key inputs #:allow-other-keys) + (substitute* "contrib/dmenu/passmenu" + (("dmenu=dmenu-wl\n") + (string-append "dmenu=" + (search-input-file inputs "/bin/dmenu-wl") + "\n")) + (("xdotool=\"ydotool") + (string-append "xdotool=\"" + (search-input-file inputs "/bin/ydotool")))))))))))) -- 2.48.1