-
-
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
rmlint: fix running rmlint --gui #90267
Conversation
I'm not sure if we should put all these additions behind a |
From documentation:
Therefore, a |
pkgs/tools/misc/rmlint/default.nix
Outdated
]; | ||
|
||
prefixKey = "--prefix="; | ||
|
||
postInstall = '' | ||
wrapProgram $out/bin/rmlint \ |
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.
We usually use wrapPython
for this.
nativeBuildInputs = [
pythonPackages.wrapPython
];
pythonPath = [ python3.pkgs.pygobject3 python3.pkgs.pycairo ];
# not sure if this line is needed, wrapPythonProgramsIn might already prefix `$out/bin`.
makeWrapperArgs = ["--prefix" "PATH" ":" "$out/bin"];
postFixup = ''
wrapPythonProgramsIn "$out/bin/rmlint" "$out $pythonPath"
'';
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.
wrapPythonProgramsIn
doesn't work here, as it checks for a python shebang, and $out/bin/rmlint
itself is no python program.
So weird, why do not they just build a separate But yeah, I would use |
|
@jtojnar, @Mic92 did I oversee something, or is the In that case, I'd go with that (and add a |
Yeah, that sounds right. If you want to prevent double wrapping, you can also go the other way round with I would still prefer working with upstream to decouple the GUI into a separate executable and possibly package, though. |
I pushed a new version, preventing the double wrapping as recommended in #90267 (comment). |
I opened an issue at sahib/rmlint#419 about moving the GUI into a separate binary. After some thinking, I'll also flip I could imagine people wanting to run this on headless systems, without pulling in all of GTK+. |
rmlint has a `--gui` option which is writing a python "bootstrap" script in `/tmp`. It currently can't find its own python modules, as we don't prefix `PYTHONPATH` to point to it. Also, there's some other runtime dependencies, mostly due to using gtk from python(3), which also needs to be preprended to `PYTHONPATH`. The `rmlint` GUI components also execute `rmlint` again with `--version` to determine some features, for which we need to prefix `PATH` with `$out/bin`.
rmlint has a
--gui
option which is writing a python "bootstrap" scriptin
/tmp
.It currently can't find its own python modules, as we don't prefix
PYTHONPATH
to point to it. Also, there's some other runtimedependencies, mostly due to using gtk from python(3), which also needs
to be preprended to
PYTHONPATH
.rmlint
also executes itself again with--version
to determine somefeatures, for which we need to prefix
PATH
with$out/bin
.Motivation for this change
Things done
sandbox
innix.conf
on non-NixOS linux)nix-shell -p nixpkgs-review --run "nixpkgs-review wip"
./result/bin/
)nix path-info -S
before and after)cc @k0ral