-
-
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
stdenv/check-meta: getEnv if the attribute is unset #72376
Conversation
There were two issues: * builtins.getEnv was called deep into the nixpkgs tree making it hard to discover. This is solved by moving the call into pkgs/top-level/impure.nix * when the config was explicitly set by the user to false, it would still try and load the environment variable. This meant that it was not possible to guarantee the same outcome on two different systems.
There were two issues: * builtins.getEnv was called deep into the nixpkgs tree making it hard to discover. This is solved by moving the call into pkgs/top-level/impure.nix * when the config was explicitly set by the user to false, it would still try and load the environment variable. This meant that it was not possible to guarantee the same outcome on two different systems. (cherry picked from commit 71184f8)
inherit config overlays crossSystem crossOverlays; | ||
inherit overlays crossSystem crossOverlays; | ||
|
||
config = defaultConfig // config; |
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.
config can be a function:
nixpkgs/pkgs/top-level/default.nix
Lines 50 to 56 in 71184f8
# Allow both: | |
# { /* the config */ } and | |
# { pkgs, ... } : { /* the config */ } | |
config1 = | |
if lib.isFunction config0 | |
then config0 { inherit pkgs; } | |
else config0; |
This broke nix-review.
https://github.com/Mic92/nix-review/blob/33c31f06b4e8e74e1b48e8df8cb8083041ec14ea/nix_review/buildenv.py#L40
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.
thanks for debugging this and sorry about the breakage!
)" (NixOS#72752) This reverts commit 71184f8. (cherry picked from commit cf8a2d0)
It's not necessary to use a function since we don't use the pkgs attribute. The config can just be an attribute set. Related to NixOS/nixpkgs#72376 (comment)
There were two issues:
to discover. This is solved by moving the call into
pkgs/top-level/impure.nix
still try and load the environment variable. This meant that it was
not possible to guarantee the same outcome on two different systems.
Things done
sandbox
innix.conf
on non-NixOS linux)nix-shell -p nix-review --run "nix-review wip"
./result/bin/
)nix path-info -S
before and after)Notify maintainers
cc @