I wanted to install a flatpak image from source code. Inside the manifest file, it is specified that rust-stable is required.
"sdk-extensions": [
    "org.freedesktop.Sdk.Extension.rust-stable"
],
The specified Rust flatpak is already installed on my system twice:
$ flatpak list|grep Rust
Rust stable org.freedesktop.Sdk.Extension.rust-stable   1.55.0  20.08   flathub system
Rust stable org.freedesktop.Sdk.Extension.rust-stable   1.55.0  20.08   flathub user
But when I try to build and install the flatpak, it tells me that the rust-stable flatpak is not available:
$ flatpak-builder --install --force-clean mysoftware com.example.MySoftware.Devel.json
(flatpak-builder:18580): Json-CRITICAL **: 10:37:25.850: json_object_get_string_member: assertion 'node != NULL' failed
(flatpak-builder:18580): flatpak-builder-WARNING **: 10:37:25.850: Missing source type
(flatpak-builder:18580): Json-WARNING **: 10:37:25.851: Failed to deserialize "sources" property of type "gpointer" for an object of type "BuilderModule"
Downloading sources
Initializing build dir
error: Requested extension org.freedesktop.Sdk.Extension.rust-stable not installed
Why doesn't flatpak find the package?
