From d8c02172e0df8df2ca561df110b419791df1fb09 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Mon, 25 Mar 2024 10:52:31 -0400 Subject: [PATCH] overlays/patches: patch fprintd with fix for indefinite timeout --- overlays/patches/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/overlays/patches/default.nix b/overlays/patches/default.nix index 8823e5d..a8edec4 100644 --- a/overlays/patches/default.nix +++ b/overlays/patches/default.nix @@ -12,4 +12,11 @@ in }); tailscale-doge = addPatches prev.tailscale [ ./tailscale-cgnat.patch ]; + + fprintd = addPatches prev.fprintd [ + (final.fetchpatch { + url = "https://gitlab.freedesktop.org/libfprint/fprintd/-/commit/8a8162daa2fb08210ecc4c48d1f10ee97cc7a088.patch"; + hash = "sha256-05tNiv2wdztkjBBiBS5hpuC5n3QrsJ5o15Uv7Q42on4="; + }) + ]; }