wayland-protocols: do not check with a non-BFD linker

This commit is contained in:
Weijia Wang 2023-03-22 17:19:52 +02:00
parent 396918ad01
commit 7b93912f0e

View file

@ -8,7 +8,8 @@ stdenv.mkDerivation rec {
pname = "wayland-protocols";
version = "1.31";
doCheck = stdenv.hostPlatform == stdenv.buildPlatform && wayland.withLibraries;
# https://gitlab.freedesktop.org/wayland/wayland-protocols/-/issues/48
doCheck = stdenv.hostPlatform == stdenv.buildPlatform && stdenv.targetPlatform.linker == "bfd" && wayland.withLibraries;
src = fetchurl {
url = "https://gitlab.freedesktop.org/wayland/${pname}/-/releases/${version}/downloads/${pname}-${version}.tar.xz";