1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 10:50:24 -04:00

nix repl: Print which variables are just loaded

When we run `nix repl nixpkgs` we get "Added 6 variables". This is not
useful as it doesn't tell us which variables the flake has exported to
our global repl scope.

This patch prints the name of each variable that was just loaded. We
currently cap printing to 10 variables in order to avoid excessive
prints.

Github issue: 11404
This commit is contained in:
Kevin Robert Stravers 2024-09-02 15:11:06 -04:00
parent ef1ac0d117
commit fa0b3b6595
No known key found for this signature in database
GPG key ID: 7C7E12DE0238D700
2 changed files with 58 additions and 0 deletions

View file

@ -790,6 +790,19 @@ void NixRepl::addAttrsToScope(Value & attrs)
staticEnv->sort();
staticEnv->deduplicate();
notice("Added %1% variables.", attrs.attrs()->size());
const int max_print = 10;
int count = 0;
for (auto & i : *attrs.attrs()) {
count += 1;
if (count > max_print) {
notice("... And %1% other variables", attrs.attrs()->size() - max_print);
break;
}
std::string_view name = state->symbols[i.name];
notice("- %1%", name);
}
}

View file

@ -153,6 +153,49 @@ foo + baz
' "3" \
./flake ./flake\#bar --experimental-features 'flakes'
testReplResponse '
:a { a = 1; b = 2; longerName = 3; "with spaces" = 4; }
' 'Added 4 variables.
- a
- b
- longerName
- with spaces
'
cat <<EOF > attribute-set.nix
{
a = 1;
b = 2;
longerName = 3;
"with spaces" = 4;
}
EOF
testReplResponse '
:l ./attribute-set.nix
' 'Added 4 variables.
- a
- b
- longerName
- with spaces
'
testReplResponse $'
attributes = builtins.foldl\' (x: y: x // y) {} (map (x: { ${builtins.toString x} = x; }) (builtins.genList (x: x) 13))
:a attributes
' 'Added 13 variables.
- 0
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
... And 3 other variables
'
# Test the `:reload` mechansim with flakes:
# - Eval `./flake#changingThing`
# - Modify the flake
@ -302,6 +345,8 @@ runRepl () {
-e "s@$testDirNoUnderscores@/path/to/tests/functional@g" \
-e "s@$nixVersion@<nix version>@g" \
-e "s@Added [0-9]* variables@Added <number omitted> variables@g" \
-e '/^- /d' \
-e '/\.\.\. And [0-9]* other variables/d' \
| grep -vF $'warning: you don\'t have Internet access; disabling some network-dependent features' \
;
}