--- Begin Message ---
Subject: |
[PATCH] gnu: Add yubikey-oath-dmenu. |
Date: |
Fri, 14 Jan 2022 21:15:10 +0000 |
Hello!
Here is a patch to add yubikey-oath-dmenu, a handy way to get OATH codes from a
Yubikey with a dmenu interface. I use it all the time (though through rofi). It
seemed the best place was in the security-token module with similar yubikey
packages. This is written in python but meant to run as a program rather than
used as a library, so I called it without a python- prefix (and it runs with
just non-propagated inputs).
Thanks!
John
0001-gnu-Add-yubikey-oath-dmenu.patch
Description: Text Data
--- End Message ---
--- Begin Message ---
Subject: |
Re: bug#53270: [PATCH] gnu: Add yubikey-oath-dmenu. |
Date: |
Mon, 24 Jan 2022 10:10:00 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) |
Hi,
John Kehayias <john.kehayias@protonmail.com> skribis:
> From a5958b588cebd23012d7d9cbeb8f1e22a3802ea2 Mon Sep 17 00:00:00 2001
> From: John Kehayias <john.kehayias@protonmail.com>
> Date: Fri, 14 Jan 2022 16:11:47 -0500
> Subject: [PATCH] gnu: Add yubikey-oath-dmenu.
>
> * gnu/packages/security-token.scm (yubikey-oath-dmenu): New variable.
Applied. I took the liberty to make the change below, to avoid using a
non-literal string as the ‘substitute*’ pattern (it’s possible to use a
non-literal string but more error prone).
Thanks John and Maxime!
Ludo’.
diff --git a/gnu/packages/security-token.scm b/gnu/packages/security-token.scm
index b2f9f83ba2..8190e1e1e2 100644
--- a/gnu/packages/security-token.scm
+++ b/gnu/packages/security-token.scm
@@ -471,14 +471,12 @@ (define-public yubikey-oath-dmenu
(delete 'build) ; or build
(add-after 'unpack 'fix-paths
(lambda* (#:key inputs #:allow-other-keys)
- (for-each (lambda (tool)
- (substitute* "yubikey-oath-dmenu.py"
- (((string-append "'" tool))
- (string-append
- "'"
- (search-input-file inputs
- (string-append "/bin/"
tool))))))
- (list "dmenu" "notify-send" "wl-copy" "xclip"
"xdotool"))))
+ (substitute* "yubikey-oath-dmenu.py"
+ (("'(dmenu|notify-send|wl-copy|xclip|xdotool)" _ tool)
+ (string-append
+ "'"
+ (search-input-file inputs
+ (string-append "/bin/" tool)))))))
(replace 'install
(lambda _
(invoke "make" "install"
--- End Message ---