-
-
Notifications
You must be signed in to change notification settings - Fork 15k
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
sdistTarball requires all dependencies to be built, but this is not necessary #45020
Comments
Thank you for your contributions. This has been automatically marked as stale because it has had no activity for 180 days. If this is still important to you, we ask that you leave a comment below. Your comment can be as simple as "still important to me". This lets people see that at least one person still cares about this. Someone will have to do this at most twice a year if there is no other activity. Here are suggestions that might help resolve this more quickly:
|
I would recommend using (I'm not sure if emptying configurePhase would be okay, but avoiding deps compilation could still be possible in |
I don't have any need for this anymore so I'm going to close this issue. It sounds like there is a good solution/workaround now, too! |
Issue description
pkgs.haskell.lib.sdistTarball
overrides a package's derivation to have a build phase that simply calls./Setup sdist
. However, all build inputs are retained, but these are not necessary. The current behavior means thatsdistTarball
cannot complete until all dependencies are built, but if you only need the tarball this delays the build.I believe we can just add the following:
to
sdistTarball
.The text was updated successfully, but these errors were encountered: