Merge pull request #328804 from flokli/wayland-no-propagate-bin

wayland: don't propagate bin output

authored by Florian Klink and committed by GitHub 38b5a205 d2dc8547

+3
+3
pkgs/development/libraries/wayland/default.nix
··· 55 55 56 56 outputs = [ "out" "bin" "dev" ] ++ lib.optionals withDocumentation [ "doc" "man" ]; 57 57 separateDebugInfo = true; 58 + # We don't want `bin` to be propagated, as it'd propagate wayland-scanner, which breaks cross. 59 + # See https://github.com/NixOS/nixpkgs/pull/328804 60 + propagatedBuildOutputs = [ "out" "dev" ]; 58 61 59 62 mesonFlags = [ 60 63 "-Ddocumentation=${lib.boolToString withDocumentation}"