From e61d7f808a1cce0d5be637d7da9e3201e1129343 Mon Sep 17 00:00:00 2001 From: yvt Date: Sat, 16 Oct 2021 00:56:08 +0900 Subject: [PATCH] chore(nix): add `libxkbcommon` to `LD_LIBRARY_PATH` --- etc/shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/shell.nix b/etc/shell.nix index 578166b0228..bb2e3b502ab 100644 --- a/etc/shell.nix +++ b/etc/shell.nix @@ -32,7 +32,7 @@ clangStdenv.mkDerivation rec { shellHook = '' # Fix missing libraries errors (those libraries aren't linked against, so we need to dynamically supply them) - export LD_LIBRARY_PATH=${lib.makeLibraryPath [ xorg.libXcursor xorg.libXrandr xorg.libXi ]} + export LD_LIBRARY_PATH=${lib.makeLibraryPath [ xorg.libXcursor xorg.libXrandr xorg.libXi libxkbcommon ]} # Fix invalid option errors during linking # https://github.com/mozilla/nixpkgs-mozilla/commit/c72ff151a3e25f14182569679ed4cd22ef352328 unset AS