-
-
Notifications
You must be signed in to change notification settings - Fork 14.2k
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
fetchurl: Don't force-override curl's gssSupport to on unnecessarily #66506
Merged
infinisil
merged 1 commit into
NixOS:master
from
nh2:fetchurl-dont-force-set-gssSupport
Aug 12, 2019
Merged
fetchurl: Don't force-override curl's gssSupport to on unnecessarily #66506
infinisil
merged 1 commit into
NixOS:master
from
nh2:fetchurl-dont-force-set-gssSupport
Aug 12, 2019
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nh2
changed the title
Fetchurl dont force set gss support
fetchurl: Don't force-override curl's gssSupport to on unnecessarily
Aug 12, 2019
nh2
force-pushed
the
fetchurl-dont-force-set-gssSupport
branch
from
August 12, 2019 05:08
e13b9e9
to
65b4b27
Compare
ofborg
bot
added
10.rebuild-darwin: 0
This PR does not cause any packages to rebuild on Darwin
10.rebuild-linux: 0
This PR does not cause any packages to rebuild on Linux
labels
Aug 12, 2019
…6499. The original intent in commit a1fec86 treewide: assemble all `fetchurlBoot` uses in overrides to `fetchurl` itself was to turn `gssSupport` *off* on Darwin, but the code actually also forced it *on* on Linux. This resulted in previous (e.g. overlays) `.override { gssSupport = false; }` being ignored (NixOS#66499). This commit fixes it by just respecting the old value when it doesn't need to be forced to off.
nh2
force-pushed
the
fetchurl-dont-force-set-gssSupport
branch
from
August 12, 2019 22:43
65b4b27
to
b7dfc72
Compare
That was merged, I have rebased. |
Just for clarification, the previous version of the code was equivalent to this:
and I've made it this:
|
60 tasks
Yep, that's a bug in a1fec86.
This LGTM.
|
This was referenced Aug 13, 2019
nh2
added a commit
to nh2/static-haskell-nix
that referenced
this pull request
Oct 20, 2019
With NixOS/nixpkgs#66506 being merged, we no longer need that workaround.
nh2
added a commit
to nh2/static-haskell-nix
that referenced
this pull request
Oct 20, 2019
With NixOS/nixpkgs#66506 being merged, we no longer need that workaround.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
10.rebuild-darwin: 0
This PR does not cause any packages to rebuild on Darwin
10.rebuild-linux: 0
This PR does not cause any packages to rebuild on Linux
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
callPackage
#66503, merge that first (simply because the changed lines are close together and may result in a conflict if done independently).Motivation for this change
Bug #66499
The original intent in commit a1fec86
treewide: assemble all `fetchurlBoot` uses in overrides to `fetchurl` itself
was to turngssSupport
off on Darwin, but the code actually also forcedit on on Linux.
This resulted in previous (e.g. overlays)
.override { gssSupport = false; }
being ignored (#66499).This commit fixes it by just respecting the old value when it doesn't need to be forced to off.
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 @oxij @infinisil @matthewbauer @Ericson2314