New comment by Logarithmus on void-packages repository https://github.com/void-linux/void-packages/pull/26144#issuecomment-731490664 Comment: > > That's because chromium's binary dlopens libpipewire, and libpipewire is missing in ldd /lib/chromium/chromium. > > IMHO that's a bug in xbps. > > That's all working as intended. Applications use `dlopen` exactly to allow for optional dependencies, and scanning a binary for what it does open will 1) be fragile and 2) remove the usefulness of dlopening in the first place. OK, if I'll explicitly include `libpipewire0.2` into `depends` section, in addition to `makedepends`, will it finally work? IMHO the right solution to such problems is to implement the support for optional dependencies in `xbps`, like `pacman` does. There's an issue about that https://github.com/void-linux/xbps/issues/1, but unfortunately `xbps` isn't actively developed anymore (I guess that's related to Juan RP's departure). **UPD** just seen your fairly recent PRs in `xbps` repo, OK, I was wrong about non-active development.