From 8a67c5a5baafae948e19aaa5f757cd8aff369700 Mon Sep 17 00:00:00 2001 From: John Titor <50095635+JohnRTitor@users.noreply.github.com> Date: Mon, 15 Sep 2025 23:00:00 +0530 Subject: [PATCH] hyprlandPlugins.hy3: fix update script pattern matching --- .../window-managers/hyprwm/hyprland-plugins/hy3.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/window-managers/hyprwm/hyprland-plugins/hy3.nix b/pkgs/applications/window-managers/hyprwm/hyprland-plugins/hy3.nix index f302a5fec85f..bf63c68cd440 100644 --- a/pkgs/applications/window-managers/hyprwm/hyprland-plugins/hy3.nix +++ b/pkgs/applications/window-managers/hyprwm/hyprland-plugins/hy3.nix @@ -21,7 +21,12 @@ mkHyprlandPlugin (finalAttrs: { dontStrip = true; - passthru.updateScript = nix-update-script { }; + passthru.updateScript = nix-update-script { + extraArgs = [ + "--version-regex" + "hl(.*)" + ]; + }; meta = { homepage = "https://github.com/outfoxxed/hy3";