New comment by Anachron on void-packages repository https://github.com/void-linux/void-packages/pull/20538#issuecomment-609664393 Comment: I still receive the dependency error: ``` => wingpanel-2.3.0_1: installing target dependencies: gala-devel-3.2.0_1 ... => wingpanel-2.3.0_1: removing autodeps, please wait... => ERROR: wingpanel-2.3.0_1: failed to install 'gala-devel-3.2.0_1' dependency! (error 19) MISSING: wingpanel>=2.3.0_1 Transaction aborted due to unresolved dependencies. => ERROR: Please see above for the real error, exiting... ``` Edit: The issue lies within this line: `depends="${makedepends} ${sourcepkg}-${version}_${revision}"` should be `depends="${sourcepkg}>=${version}_${revision}"` in both `gala` and `wingpanel` templates. Compilation continues but we get another error: `meson.build:32:0: ERROR: Dependency "gtk+-3.0" not found, tried pkgconfig` I'll keep trying. Edit2: Meson is missing a lot of deps. Not sure how this was able to compile on your local machine. I'm currently stocking the `hostmakedepends` as if it's Christmas already. My new depends: ``` hostmakedepends="pkg-config glib-devel gtk+3-devel libgee08-devel mutter-devel granite-devel vala" makedepends="gala-devel" ``` Still errors for mutter though: ``` Found CMake: NO Run-time dependency libmutter-2 found: NO (tried pkgconfig and cmake) Run-time dependency libmutter-3 found: NO (tried pkgconfig and cmake) Run-time dependency libmutter-4 found: NO (tried pkgconfig and cmake) Run-time dependency libmutter-5 found: NO (tried pkgconfig and cmake) Run-time dependency libmutter-6 found: NO (tried pkgconfig and cmake) wingpanel-interface/meson.build:68:4: ERROR: Problem encountered: No supported mutter library found! A full log can be found at /builddir/wingpanel-2.3.0/build/meson-logs/meson-log.txt ```