mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 04:33:37 +00:00
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.
This commit is contained in:
parent
984ce3fa22
commit
30ca97e287
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ with pkgs; mkShell {
|
||||||
];
|
];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
udev alsaLib vulkan-loader
|
udev alsaLib vulkan-loader
|
||||||
x11 xorg.libXcursor xorg.libXrandr xorg.libXi # To use x11 feature
|
xlibsWrapper xorg.libXcursor xorg.libXrandr xorg.libXi # To use x11 feature
|
||||||
libxkbcommon wayland # To use wayland feature
|
libxkbcommon wayland # To use wayland feature
|
||||||
];
|
];
|
||||||
shellHook = ''export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${pkgs.lib.makeLibraryPath [
|
shellHook = ''export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${pkgs.lib.makeLibraryPath [
|
||||||
|
|
Loading…
Reference in a new issue