-
Notifications
You must be signed in to change notification settings - Fork 346
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Devenv doesn't seem to copy or link my opengl libraries #1617
Comments
@CapedBojji, could you describe your issue in a bit more detail?
|
@sandydoo im trying to use imgui with devenv python, but since devenv isnt linking the libgl.so files it doesnt work. i tried adding the necessary pkgs but it still doesn't work packages = [ pkgs.git pkgs.glfw pkgs.glew pkgs.mesa pkgs.libGL pkgs.wayland pkgs.libcxx pkgs.libxkbcommon]; im basically forced to use nixGL if i want to work with python gui. Doesn't make sense that devenv won't by default link the necessary files |
Do you have a sample project or repro you can share? With $ python -c "from ctypes.util import find_library;print(find_library('GL'))"
libGL.so.1 What am I looking for? |
https://github.com/CapedBojji/amazon-vet-bot |
@sandydoo yeah i forgot to update you. It says they exist now but now i get
|
also to note getting ride of |
Changing
I'm not really sure why the venv would be the issue. You could try diffing your two venvs, maybe with This does seem more like an issue with finding the right driver. If it were about |
i noticed i didnt have /run/opengl but that isnt neccessary as it was working in any non devenv direcotry |
Reopened to say the error was vscode not devenv it seems. At least on nixos. On nix you have to use nix gl. |
Describe the bug
A clear and concise description of what the bug is.
To reproduce
Please provide an Short, Self Contained, Correct (Compilable), Example by creating a gist using
devenv.nix
,devenv.yaml
, and optionallydevenv.lock
.Make sure to include full logs and what you expected to happen.
devenv.nix
devenv.yaml
devenv.lock
imgui==2.0.0
The text was updated successfully, but these errors were encountered: