From f774b88df290f361258cd56b5e405e45815fa614 Mon Sep 17 00:00:00 2001 From: L-Nafaryus Date: Tue, 16 Jan 2024 01:41:51 +0500 Subject: [PATCH] devShells: rust-x11: update libraries --- devShells/rust-x11.nix | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/devShells/rust-x11.nix b/devShells/rust-x11.nix index 001fe98..349ad85 100644 --- a/devShells/rust-x11.nix +++ b/devShells/rust-x11.nix @@ -1,10 +1,21 @@ { pkgs, cranelib, ... }: 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 = '' 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 + ] }" ''; }