From d7c688003c79f7d38bf12bbffbde1c1f84123d92 Mon Sep 17 00:00:00 2001 From: Mihai Fufezan Date: Sun, 20 Jul 2025 14:14:12 +0300 Subject: [PATCH] hyprlandPlugins: remove pyt0xic/hyprfocus Superseded by hyprwm/hyprland-plugins hyprfocus --- .../hyprwm/hyprland-plugins/hyprfocus.nix | 38 ------------------- 1 file changed, 38 deletions(-) delete mode 100644 pkgs/applications/window-managers/hyprwm/hyprland-plugins/hyprfocus.nix diff --git a/pkgs/applications/window-managers/hyprwm/hyprland-plugins/hyprfocus.nix b/pkgs/applications/window-managers/hyprwm/hyprland-plugins/hyprfocus.nix deleted file mode 100644 index 15dc04ba1d01..000000000000 --- a/pkgs/applications/window-managers/hyprwm/hyprland-plugins/hyprfocus.nix +++ /dev/null @@ -1,38 +0,0 @@ -{ - lib, - mkHyprlandPlugin, - hyprland, - fetchFromGitHub, - nix-update-script, -}: - -mkHyprlandPlugin hyprland { - pluginName = "hyprfocus"; - version = "0-unstable-2025-01-04"; - - src = fetchFromGitHub { - owner = "pyt0xic"; - repo = "hyprfocus"; - rev = "de6eaf5846b970b697bdf0e20e731b9fbe08654d"; - hash = "sha256-o8uDSynpHAgpQZMjXyDiyQbxi+QgxY62uZeB08PcL/A="; - }; - - installPhase = '' - runHook preInstall - - mkdir -p $out/lib - mv hyprfocus.so $out/lib/libhyprfocus.so - - runHook postInstall - ''; - - passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; }; - meta = { - homepage = "https://github.com/pyt0xic/hyprfocus"; - description = "Focus animation plugin for Hyprland inspired by Flashfocus"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ donovanglover ]; - platforms = lib.platforms.linux; - broken = true; # Doesn't work on Hyprland v0.47.0+ - }; -}