Merge pull request #138288 from sumnerevans/yubikey-touch-detector-1.9.1

yubikey-touch-detector: init at 1.9.1

authored by

Timothy DeHerrera and committed by
GitHub
d16deecc 15b01672

+28
+26
pkgs/tools/security/yubikey-touch-detector/default.nix
··· 1 + { lib, libnotify, buildGoModule, fetchFromGitHub, pkg-config }: 2 + 3 + buildGoModule rec { 4 + pname = "yubikey-touch-detector"; 5 + version = "1.9.1"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "maximbaz"; 9 + repo = "yubikey-touch-detector"; 10 + rev = version; 11 + sha256 = "sha256-I9dRCQhbXd8K1zp291z9XVwHI9DcxgvrzYaHICZH5v0="; 12 + }; 13 + vendorSha256 = "sha256-UeDLGwYrXwLOtQt/8fEmficc/1j0x+zr/JLa6lLF5cs="; 14 + 15 + nativeBuildInputs = [ pkg-config ]; 16 + 17 + buildInputs = [ libnotify ]; 18 + 19 + meta = with lib; { 20 + description = "A tool to detect when your YubiKey is waiting for a touch (to send notification or display a visual indicator on the screen)."; 21 + homepage = "https://github.com/maximbaz/yubikey-touch-detector"; 22 + maintainers = with maintainers; [ sumnerevans ]; 23 + license = licenses.isc; 24 + platforms = platforms.unix; 25 + }; 26 + }
+2
pkgs/top-level/all-packages.nix
··· 19524 19524 19525 19525 yubikey-agent = callPackage ../tools/security/yubikey-agent { }; 19526 19526 19527 + yubikey-touch-detector = callPackage ../tools/security/yubikey-touch-detector { }; 19528 + 19527 19529 zchunk = callPackage ../development/libraries/zchunk { }; 19528 19530 19529 19531 zeitgeist = callPackage ../development/libraries/zeitgeist { };