Compare commits

...

2 Commits

Author SHA1 Message Date
Zynh Ludwig 1e8afa8a2f formatting 2024-07-29 23:17:23 -07:00
Zynh Ludwig 3d5f8d5edb nix: rust-bin 2024-07-29 23:17:11 -07:00
1 changed files with 13 additions and 3 deletions

View File

@ -7,9 +7,19 @@ mkShell rec {
pkg-config pkg-config
]; ];
buildInputs = [ buildInputs = [
udev alsa-lib vulkan-loader udev
xorg.libX11 xorg.libXcursor xorg.libXi xorg.libXrandr # To use the x11 feature alsa-lib
libxkbcommon wayland # To use the wayland feature vulkan-loader
xorg.libX11 # To use the x11 feature
xorg.libXcursor
xorg.libXrandr
xorg.libXi
libxkbcommon # To use the wayland feature
wayland
(rust-bin.selectLatestNightlyWith (toolchain: toolchain.default))
]; ];
LD_LIBRARY_PATH = lib.makeLibraryPath buildInputs; LD_LIBRARY_PATH = lib.makeLibraryPath buildInputs;
} }