From e647b29de17233dcc563f8ead57a482c047a306a Mon Sep 17 00:00:00 2001 From: Mihai Fufezan Date: Sun, 2 Feb 2025 10:24:37 +0200 Subject: [PATCH] hyprlandPlugins.hyprfocus: 0-unstable-2024-11-09 -> 0-unstable-2025-01-04 Remove patch which was applied in the meantime. Mark as broken. --- .../hyprwm/hyprland-plugins/hyprfocus.nix | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/pkgs/applications/window-managers/hyprwm/hyprland-plugins/hyprfocus.nix b/pkgs/applications/window-managers/hyprwm/hyprland-plugins/hyprfocus.nix index befba9e11a3d..15dc04ba1d01 100644 --- a/pkgs/applications/window-managers/hyprwm/hyprland-plugins/hyprfocus.nix +++ b/pkgs/applications/window-managers/hyprwm/hyprland-plugins/hyprfocus.nix @@ -3,28 +3,20 @@ mkHyprlandPlugin, hyprland, fetchFromGitHub, - fetchpatch2, nix-update-script, }: mkHyprlandPlugin hyprland { pluginName = "hyprfocus"; - version = "0-unstable-2024-11-09"; + version = "0-unstable-2025-01-04"; src = fetchFromGitHub { owner = "pyt0xic"; repo = "hyprfocus"; - rev = "bead5b77d80f222c006d1a6c6f44ee8b02021d73"; - hash = "sha256-qIl7opF7fA1ZmC91TGQ7D12tB7kHc6Sn9DrfUN6sbBY="; + rev = "de6eaf5846b970b697bdf0e20e731b9fbe08654d"; + hash = "sha256-o8uDSynpHAgpQZMjXyDiyQbxi+QgxY62uZeB08PcL/A="; }; - patches = [ - (fetchpatch2 { - url = "https://github.com/pyt0xic/hyprfocus/commit/e7d9ee3c470b194fe16179ff2f16fc4233e928ef.patch"; - hash = "sha256-iETrtvoIZfcaD3TcKIIwFL8Rua0dFEqboml9AgQ/RZ0="; - }) - ]; - installPhase = '' runHook preInstall @@ -41,5 +33,6 @@ mkHyprlandPlugin hyprland { license = lib.licenses.bsd3; maintainers = with lib.maintainers; [ donovanglover ]; platforms = lib.platforms.linux; + broken = true; # Doesn't work on Hyprland v0.47.0+ }; }