Skip to content

Commit 30ca97e

Browse files
committed
Fix Nix section of linux_dependencies.md (#5050)
# Objective `nix-shell` reported: ```error: 'x11' has been renamed to/replaced by 'xlibsWrapper'```. ## Solution Replacing `x11` with `xlibsWrapper` in the Nix section of linux_dependencies.md fixes the problem on my system, and bevy projects build fine.
1 parent 984ce3f commit 30ca97e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/linux_dependencies.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ with pkgs; mkShell {
8484
];
8585
buildInputs = [
8686
udev alsaLib vulkan-loader
87-
x11 xorg.libXcursor xorg.libXrandr xorg.libXi # To use x11 feature
87+
xlibsWrapper xorg.libXcursor xorg.libXrandr xorg.libXi # To use x11 feature
8888
libxkbcommon wayland # To use wayland feature
8989
];
9090
shellHook = ''export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${pkgs.lib.makeLibraryPath [

0 commit comments

Comments
 (0)