From bbe05792caa303fa283b8546b37c376325245ec9 Mon Sep 17 00:00:00 2001 From: Nick Cao Date: Fri, 10 Feb 2023 09:02:56 +0800 Subject: [PATCH] gtk-layer-shell: mark platforms linux only as the required dependency wayland-client is only available on linux --- pkgs/development/libraries/gtk-layer-shell/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/gtk-layer-shell/default.nix b/pkgs/development/libraries/gtk-layer-shell/default.nix index 1c946ec3467..92fc02bfa2c 100644 --- a/pkgs/development/libraries/gtk-layer-shell/default.nix +++ b/pkgs/development/libraries/gtk-layer-shell/default.nix @@ -76,6 +76,6 @@ stdenv.mkDerivation rec { description = "A library to create panels and other desktop components for Wayland using the Layer Shell protocol"; license = licenses.lgpl3Plus; maintainers = with maintainers; [ eonpatapon ]; - platforms = platforms.unix; + platforms = platforms.linux; }; }