From be3ad66d60fa3cded3be51c4862908a58ba75d91 Mon Sep 17 00:00:00 2001 From: Enrico Stemmer Date: Wed, 25 Jun 2025 02:10:20 +0200 Subject: [PATCH] hyprshell: update description and platforms --- pkgs/by-name/hy/hyprshell/package.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/hy/hyprshell/package.nix b/pkgs/by-name/hy/hyprshell/package.nix index cee96100e937..24c7bc6544d8 100644 --- a/pkgs/by-name/hy/hyprshell/package.nix +++ b/pkgs/by-name/hy/hyprshell/package.nix @@ -4,7 +4,9 @@ fetchFromGitHub, pkg-config, wrapGAppsHook4, + gtk4, gtk4-layer-shell, + hyprland, }: rustPlatform.buildRustPackage (finalAttrs: { @@ -27,15 +29,16 @@ rustPlatform.buildRustPackage (finalAttrs: { ]; buildInputs = [ + gtk4 gtk4-layer-shell ]; meta = { - description = "CLI/GUI that allows switching between windows in Hyprland"; + description = "Modern GTK4-based window switcher and application launcher for Hyprland"; mainProgram = "hyprshell"; homepage = "https://github.com/H3rmt/hyprshell"; license = lib.licenses.mit; - platforms = lib.platforms.linux; + platforms = hyprland.meta.platforms; maintainers = with lib.maintainers; [ arminius-smh ]; }; })