Hi, could you please help me with building squeekboard. There's open issue/patch [1] and this mail contains updated patches. I've managed to build the package phosh but to make it useful it needs keyboard - squeekboard. It's a Rust projcet that uses meson build system to create the Cargo.toml. After trying to combine both build systems I've opted for crate-build-system which gets me further. But there are 2 issues: - I'm getting errors as some features in Rust are not enabled Here's an example: Compiling rs v0.1.0 (/tmp/guix-build-squeekboard-1.19.0.drv-0/source) error[E0599]: no method named `release` found for struct `glib::MainContext` in the current scope --> src/main.rs:158:13 | 158 | ctx.release(); | ^^^^^^^ method not found in `glib::MainContext` And here's the excerpt of the source code: #[cfg(not(feature = "glib_v0_14" ))] ctx. release (); How can I fix this error as the rust crate in Guix is rust-glib-0.14 (version: 0.14.8)? - During the build the package rav1e fails to build. How can I fix this? The build logs are attached. [1] https://issues.guix.gnu.org/44400#13 ---- Petr