Skip to content

Instantly share code, notes, and snippets.

@paulfrische
Created November 24, 2024 13:01
Show Gist options
  • Select an option

  • Save paulfrische/d749870774a79c4e1aeb638fcf82e60d to your computer and use it in GitHub Desktop.

Select an option

Save paulfrische/d749870774a79c4e1aeb638fcf82e60d to your computer and use it in GitHub Desktop.
devenv.nix for winit-rs
{
pkgs,
lib,
...
}: let
libs = with pkgs; [
libGL
xorg.libX11
xorg.libXi
libxkbcommon
xorg.libXcursor
xorg.libXrandr
xorg.libXinerama
];
in {
packages = libs;
env.LD_LIBRARY_PATH = lib.makeLibraryPath libs;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment