mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
36 lines
1.1 KiB
Nix
36 lines
1.1 KiB
Nix
{ lib, libnotify, buildGoModule, fetchFromGitHub, pkg-config }:
|
|
|
|
buildGoModule rec {
|
|
pname = "yubikey-touch-detector";
|
|
version = "1.10.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "maximbaz";
|
|
repo = "yubikey-touch-detector";
|
|
rev = version;
|
|
sha256 = "sha256-3tZyaOrNzLfcCORhTSMEu8EvnNUjva8hBNotHgANS0g=";
|
|
};
|
|
vendorSha256 = "sha256-OitI9Yp4/mRMrNH4yrWSL785+3mykPkvzarrc6ipOeg=";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ libnotify ];
|
|
|
|
postInstall = ''
|
|
install -Dm444 -t $out/share/doc/${pname} *.md
|
|
|
|
install -Dm444 -t $out/lib/systemd/user *.{service,socket}
|
|
|
|
substituteInPlace $out/lib/systemd/user/*.service \
|
|
--replace /usr/bin/yubikey-touch-detector "$out/bin/yubikey-touch-detector --libnotify"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A tool to detect when your YubiKey is waiting for a touch (to send notification or display a visual indicator on the screen).";
|
|
homepage = "https://github.com/maximbaz/yubikey-touch-detector";
|
|
maintainers = with maintainers; [ sumnerevans ];
|
|
license = licenses.isc;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|