-
-
Notifications
You must be signed in to change notification settings - Fork 14.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
spandsp: refactor #218480
spandsp: refactor #218480
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.
LGTM! This should probably go to the staging though
Wait, it includes the changes, but not the commits? I merged in the wrong order, I guess, but I thought it would work if this PR includes those? |
The `spandsp` derivation has the clauses in the wrong order (e.g. `makeFlags` before `configureFlags`) which makes it hard to understand. This commit fixes the clause order, factors out `common.nix` from the two versions of spandsp, and also tries to normalize the coding style.
#218477 got some suggested changes which I forgot to backport into this PR. It's rebased now. |
Includes (to avoid merge conflict):
Description of changes
The
spandsp
derivation has the clauses in the wrong order (e.g.makeFlags
beforeconfigureFlags
) which makes it hard to understand.This commit fixes the clause order, factors out
common.nix
from the two versions of spandsp, and also tries to normalize the coding style.CC: @SuperSandro2000 for review
Things done