Closed issue by Barbaross93 on void-packages repository https://github.com/void-linux/void-packages/issues/37175 Description: I recently stumbled upon [keyd](https://github.com/rvaiya/keyd), a sweet and simple keyboard daemon similar to kmonad. I've made a template that works, but I don't think I did things "properly", notably the usage of `make_use_env` and the manual install of the needed quirk file for libinput. If there is interest, I'll go ahead and make a PR provided I can get some feedback. Here's the template: ``` # Template file for 'keyd' pkgname=keyd version=2.4.0 revision=1 build_style=gnu-makefile make_use_env="1" short_desc="Key remapping daemon for linux" maintainer="Barbaross " license="MIT" homepage="https://github.com/rvaiya/keyd" distfiles="https://github.com/rvaiya/keyd/archive/refs/tags/v${version}.tar.gz" checksum=100007894ac4fa6e95f5de5c2fe992c8b00e68d9df76c4bcdd8402a29d7b4058 post_install() { vlicense LICENSE vinstall ${wrksrc}/keyd.quirks 644 usr/share/libinput 30-keyd.quirks } ```