-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
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
rapid-photo-downloader: fix QT wrapping #66322
rapid-photo-downloader: fix QT wrapping #66322
Conversation
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.
See qutebrowser
with as an example of how to do this. (the mkDerivationWith part)
And please wrap in preFixup
.
I'm a bit stuck with how to proceed. Moving the wrapping to Also, from my understanding the way forward is to use declarative wrappers, however if I use Finally, I can't find a way to avoid double-wrapping the binaries (once for Python libs, once for QT). But that just seems to be the way it works at the moment. Between the wrappers being reworked and the recent QT changes it's sometimes hard to differentiate between "new best practices" and deprecated patterns :-). |
7b2eb8c
to
f63793a
Compare
Does that look reasonable? I must admit I don't entirely understand which is the desired approach so I'm cargo culting from other derivations a little. It works though. |
We can avoid the double wrapping safely by doing this instead: add
to Also you don't need to include |
f63793a
to
6fd50e2
Compare
Nifty! I was just trying to do this on another similar package but it was failing because I wasn't escaping the sigil. Thanks!
Yeah, I just found some docs I hadn't seen before which explained this. Then looking at the source it's starting to make sense. The names were confusing me (eg it wasn't immediately obvious that Anyway, updated and it looks much cleaner now. Thanks for the pointers. |
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.
Builds and executes for me. I inspected the wrappers on the binaries and they have the arguments from wrapQtAppsHook
.
6fd50e2
to
2f1b92d
Compare
Motivation for this change
Fixing QT wrapping as per #65399. Wrapping is done manually as this is a Python app. To be honest I'm not sure if this is the right approach, but it works. Suggestions welcome.
Things done
sandbox
innix.conf
on non-NixOS)nix-shell -p nix-review --run "nix-review wip"
./result/bin/
)nix path-info -S
before and after)Notify maintainers
cc @jfrankenau