zwp_input_method_v2 and zwp_virtual_keyboard_v1, vendored verbatim from wlroots 012ca825 under proto/ and turned into imv2.[ch] and vkv1.[ch] by wayland-scanner; only the XML is tracked, and nothing compiles them yet. The Dockerfile gains wayland, which carries the scanner. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
46 lines
1003 B
Docker
46 lines
1003 B
Docker
FROM archlinux:base@sha256:b0deabeb3d283da2c7f7dbf0eea051b7b2cd0554e0b737cc457fd21683bdcdd1
|
|
|
|
RUN pacman -Syu --noconfirm --needed \
|
|
cairo \
|
|
fontconfig \
|
|
diffutils \
|
|
gcc \
|
|
gtk3 \
|
|
ibus \
|
|
harfbuzz \
|
|
libx11 \
|
|
libxcb \
|
|
libxkbcommon \
|
|
make \
|
|
noto-fonts-emoji \
|
|
pango \
|
|
pkgconf \
|
|
plan9port \
|
|
python \
|
|
ttf-dejavu \
|
|
ttf-jigmo \
|
|
valgrind \
|
|
wayland \
|
|
which \
|
|
xorg-server-xvfb \
|
|
xcb-imdkit \
|
|
xcb-util \
|
|
dbus \
|
|
&& pacman -Scc --noconfirm
|
|
|
|
RUN export DEBUGINFOD_URLS=https://debuginfod.archlinux.org \
|
|
&& buildid="$(readelf -n /usr/lib/ld-linux-x86-64.so.2 | sed -n 's/.*Build ID: //p')" \
|
|
&& test -n "$buildid" \
|
|
&& debugdir="/usr/lib/debug/.build-id/$(printf '%.2s' "$buildid")" \
|
|
&& mkdir -p "$debugdir" \
|
|
&& install -m 0644 "$(debuginfod-find debuginfo /usr/lib/ld-linux-x86-64.so.2)" \
|
|
"$debugdir/${buildid#??}.debug" \
|
|
&& rm -rf /root/.cache/debuginfod_client
|
|
|
|
RUN dbus-uuidgen --ensure=/etc/machine-id
|
|
|
|
ENV PLAN9=/usr/lib/plan9
|
|
ENV PATH=$PATH:/usr/lib/plan9/bin
|
|
|
|
WORKDIR /src
|