{ lib, fetchFromGitHub, hyprland, mkHyprlandPlugin, unstableGitUpdater, }: mkHyprlandPlugin hyprland { pluginName = "hyprspace"; version = "0-unstable-2024-08-21"; src = fetchFromGitHub { owner = "KZDKM"; repo = "hyprspace"; rev = "743ec37d02bb2b7261f28de16bf404cebfd96105"; hash = "sha256-w0j/3OeSrpx+S8if1M2ONBsZvJQ1hBQkdTQEiMCHy7o="; }; dontUseCmakeConfigure = true; installPhase = '' runHook preInstall mkdir -p $out/lib mv Hyprspace.so $out/lib/libhyprspace.so runHook postInstall ''; passthru.updateScript = unstableGitUpdater { }; meta = { homepage = "https://github.com/KZDKM/Hyprspace"; description = "Workspace overview plugin for Hyprland"; license = lib.licenses.gpl2Only; platforms = lib.platforms.linux; maintainers = with lib.maintainers; [ donovanglover ]; }; }