devShells: rust-x11: update libraries
This commit is contained in:
parent
ab3c9f4eab
commit
f774b88df2
@ -1,10 +1,21 @@
|
|||||||
{ pkgs, cranelib, ... }:
|
{ pkgs, cranelib, ... }:
|
||||||
cranelib.devShell {
|
cranelib.devShell {
|
||||||
packages = with pkgs; [ libGL xorg.libXi xorg.libX11 xorg.libXcursor lld libxkbcommon ];
|
packages = with pkgs; [
|
||||||
|
libGL
|
||||||
|
xorg.libXi xorg.libX11 xorg.libXcursor xorg.libXrandr
|
||||||
|
lld
|
||||||
|
libxkbcommon
|
||||||
|
vulkan-loader
|
||||||
|
];
|
||||||
|
|
||||||
shellHook = ''
|
shellHook = ''
|
||||||
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${
|
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${
|
||||||
with pkgs; lib.makeLibraryPath [ libGL xorg.libX11 xorg.libXi xorg.libXcursor libxkbcommon ]
|
with pkgs; lib.makeLibraryPath [
|
||||||
|
libGL
|
||||||
|
xorg.libX11 xorg.libXi xorg.libXcursor xorg.libXrandr
|
||||||
|
libxkbcommon
|
||||||
|
vulkan-loader
|
||||||
|
]
|
||||||
}"
|
}"
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user