-
-
Notifications
You must be signed in to change notification settings - Fork 309
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
Cleanup deps #1312
Cleanup deps #1312
Conversation
- `nativeBuildInputs` vs `buildInputs` - narrow down `with`s for clarity - use `autoreconfHook` not `bootstrap` script These sorts of changes have also been done in the Nix repo.
nativeBuildInputs = | ||
with final.buildPackages; [ |
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.
nativeBuildInputs = | |
with final.buildPackages; [ | |
nativeBuildInputs = with final.buildPackages; [ |
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.
I don't like the existing style either, but if I did that I would be better off moving way more things around?
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.
hmmm but that would also be a much bigger change and I didn't see the other lines in the diff 😉
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.
I meant I think would be better in a separate PR to run an auto-format, and in this one to do the minimal thing
buildInputs = | ||
with final; [ | ||
unzip |
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.
buildInputs = | |
with final; [ | |
unzip | |
buildInputs = with final; [ | |
unzip |
nativeBuildInputs
vsbuildInputs
narrow down
with
s for clarityuse
autoreconfHook
notbootstrap
scriptThese sorts of changes have also been done in the Nix repo.