mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #222547 from wegank/wayland-protocols-darwin
wayland-protocols: do not check with a non-BFD linker
This commit is contained in:
commit
baeb7fb75b
1 changed files with 2 additions and 1 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue