yubikey-touch-detector: 1.12.2 -> 1.12.4 (#373892)

This commit is contained in:
Peder Bergebakken Sundt
2025-01-17 03:01:06 +01:00
committed by GitHub
@@ -4,22 +4,28 @@
gpgme,
buildGoModule,
fetchFromGitHub,
installShellFiles,
pkg-config,
scdoc,
}:
buildGoModule rec {
pname = "yubikey-touch-detector";
version = "1.12.2";
version = "1.12.4";
src = fetchFromGitHub {
owner = "maximbaz";
repo = "yubikey-touch-detector";
rev = version;
hash = "sha256-vhaJSgQUBYBXfQHHR7cR3zHCZstwRD/jXhqYR1vqMqA=";
hash = "sha256-AUy/QvNQ3d0b17wcrL3kyhzaEFgS403NR/IBXnJwWwk=";
};
vendorHash = "sha256-x8Fmhsk6MtgAtLxgH/V3KusM0BXAOaSU+2HULR5boJQ=";
nativeBuildInputs = [ pkg-config ];
nativeBuildInputs = [
pkg-config
scdoc
installShellFiles
];
buildInputs = [
libnotify
@@ -37,6 +43,9 @@ buildGoModule rec {
substituteInPlace $out/lib/systemd/user/*.service \
--replace /usr/bin/yubikey-touch-detector "$out/bin/yubikey-touch-detector"
scdoc < yubikey-touch-detector.1.scd > yubikey-touch-detector.1
installManPage yubikey-touch-detector.1
'';
meta = with lib; {