Skip to content
\n

I'm not sure how to fix it. Things were working fine until now.
\nIf I downgrade to 1.11 the fail continues, this makes me suspect it's a dependency issue. If I restore the lock, things work again

\n

I checked the blog and the changelog, but couldn't find any hints.

\n

My system:
\nOS: NixOS
\nDE: KDE

\n

Thanks!

","upvoteCount":1,"answerCount":2,"acceptedAnswer":{"@type":"Answer","text":"

For future referece, I was missing the libGL in my LD_LIBRARY_PATH env in the shell:

\n
pkgs.mkShell {\n  # other things\n  LD_LIBRARY_PATH = \"$LD_LIBRARY_PATH:${\n    with pkgs;\n    lib.makeLibraryPath [\n      wayland\n      libxkbcommon\n      fontconfig\n      libGL\n    ]\n  }\";\n}
","upvoteCount":1,"url":"https://github.com/slint-ui/slint/discussions/8776#discussioncomment-13571742"}}}

upgrade to 1.12 failed with glutin: not found #8776

Answered by woile
woile asked this question in Q&A
Discussion options

You must be logged in to vote

For future referece, I was missing the libGL in my LD_LIBRARY_PATH env in the shell:

pkgs.mkShell {
  # other things
  LD_LIBRARY_PATH = "$LD_LIBRARY_PATH:${
    with pkgs;
    lib.makeLibraryPath [
      wayland
      libxkbcommon
      fontconfig
      libGL
    ]
  }";
}

Replies: 2 comments 1 reply

Comment options

You must be logged in to vote
1 reply
@woile
Comment options

Comment options

You must be logged in to vote
0 replies
Answer selected by woile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants