xpra: fix the xkb search path (#45752)

Search for the xkb files in the nix store.

authored by Juho Östman and committed by xeji 5914bf4f 2d51cced

+1
+1
pkgs/tools/X11/xpra/default.nix
··· 52 52 preBuild = '' 53 53 export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config --cflags gtk+-2.0) $(pkg-config --cflags pygtk-2.0) $(pkg-config --cflags xtst)" 54 54 substituteInPlace xpra/server/auth/pam_auth.py --replace "/lib/libpam.so.1" "${pam}/lib/libpam.so" 55 + substituteInPlace xpra/x11/bindings/keyboard_bindings.pyx --replace "/usr/share/X11/xkb" "${xorg.xkeyboardconfig}/share/X11/xkb" 55 56 ''; 56 57 setupPyBuildFlags = ["--with-Xdummy" "--without-strict"]; 57 58