Skip to content

Commit

Permalink
Add reference to libxkbcommon to shell.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
eloraiby authored and not-fl3 committed Jun 21, 2024
1 parent da6bc06 commit dc5b3a3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@ in pkgs.mkShell {
libGL
xorg.libX11
xorg.libXi
libxkbcommon
];

shellHook = ''
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${
with pkgs;
pkgs.lib.makeLibraryPath [ libGL xorg.libX11 xorg.libXi ]
pkgs.lib.makeLibraryPath [ libGL xorg.libX11 xorg.libXi libxkbcommon ]
}"
'';
}

0 comments on commit dc5b3a3

Please sign in to comment.