yambar: fix strictDeps compilation

Yambar uses meson as build system. Its `dependency` function uses pkg-config as
default method for finding the required dependencies.

However, as seen in their code[^1], scdoc is searched with `native` set to
true. According to Meson specs[^2], it directs the search to the _build_ machine
instead of the _host_ one. This parameter is usually needed only when finding a
tool to be used during compilation.

Because of this, `pkg-config` needs to be included at `depsBuildBuild`.

Why? Magic! Sorry, I am not so proficient in cross-compilation issues yet.

[^1] https://codeberg.org/dnkl/yambar/src/commit/78f7b60e1308d9f6c879b5cbae2dadba4fa88762/doc/meson.build#L3
[^2] https://mesonbuild.com/Reference-manual_functions.html#dependency_native

+3 -1
+3 -1
pkgs/applications/misc/yambar/default.nix
··· 44 45 outputs = [ "out" "man" ]; 46 47 nativeBuildInputs = [ 48 bison 49 flex 50 meson 51 ninja 52 pkg-config 53 wayland-scanner 54 ]; 55 ··· 62 pipewire 63 pixman 64 pulseaudio 65 - scdoc 66 tllist 67 udev 68 ] ++ lib.optionals (waylandSupport) [
··· 44 45 outputs = [ "out" "man" ]; 46 47 + depsBuildBuild = [ pkg-config ]; 48 + 49 nativeBuildInputs = [ 50 bison 51 flex 52 meson 53 ninja 54 pkg-config 55 + scdoc 56 wayland-scanner 57 ]; 58 ··· 65 pipewire 66 pixman 67 pulseaudio 68 tllist 69 udev 70 ] ++ lib.optionals (waylandSupport) [