Created
November 24, 2024 13:01
-
-
Save paulfrische/d749870774a79c4e1aeb638fcf82e60d to your computer and use it in GitHub Desktop.
devenv.nix for winit-rs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| 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