From 3938c5ed20fe1f02124ba30cd4197fe18c6420dd Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Thu, 8 Jul 2021 18:36:27 +0200 Subject: [PATCH] wshowkeys: Mark as broken It doesn't run anymore: $ wshowkeys zwlr_layer_surface_v1@11: error 1: width 0 requested without setting left and right anchors wl_display_dispatch: Protocol error We'll remove this package after a while. Fix #129362. Reported-by: Nicolas Berbiche --- pkgs/tools/wayland/wshowkeys/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/tools/wayland/wshowkeys/default.nix b/pkgs/tools/wayland/wshowkeys/default.nix index 5f0025d6072b..d46678dbc9f0 100644 --- a/pkgs/tools/wayland/wshowkeys/default.nix +++ b/pkgs/tools/wayland/wshowkeys/default.nix @@ -35,5 +35,7 @@ in stdenv.mkDerivation rec { # TODO: gpl3Only or gpl3Plus (ask upstream)? platforms = platforms.unix; maintainers = with maintainers; [ primeos berbiche ]; + broken = true; # Unmaintained and fails to run (Wayland protocol error) + # TODO (@primeos): Remove this package after the NixOS 21.11 branch-off }; }