-
-
Notifications
You must be signed in to change notification settings - Fork 15.1k
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
qutebrowser: use qt515 #97586
qutebrowser: use qt515 #97586
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,16 +9,13 @@ | |
{ pkgs | ||
, stdenv | ||
, python | ||
, qt5 | ||
, libsForQt5 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That was not intended. Is it feasible to fix all python packages that were broken by this or should we change the python packages back to use Qt 5.14, while using pyqtwebengine with Qt 5.15 only for qutebrowser? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't know, I tried a bunch of them and they all seemed fine (except for inkcut). Personally I like the change and think we should fix any packages that might have been broken by this, but I guess it's hard to find out which are? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Found this just now, maestral-gui is affected (#98067). Not sure what the correct fix for this is? |
||
, overrides ? (self: super: {}) | ||
}: | ||
|
||
with pkgs.lib; | ||
|
||
let | ||
qt5 = pkgs.qt514; | ||
libsForQt5 = pkgs.libsForQt514; | ||
in | ||
|
||
let | ||
packages = ( self: | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adding arguments to
python-packages.nix
is also not the way to go.