mirror of
https://github.com/NixOS/nix
synced 2025-07-02 21:51:50 +02:00
Derivation::toJSON
: fix bug!
When I moved this code from the binary to libnixstore #7863, I forgot to display the environment variables!
This commit is contained in:
parent
c7bd3a874f
commit
208c8d326d
2 changed files with 10 additions and 0 deletions
|
@ -945,6 +945,7 @@ nlohmann::json Derivation::toJSON(const Store & store) const
|
|||
res["system"] = platform;
|
||||
res["builder"] = builder;
|
||||
res["args"] = args;
|
||||
res["env"] = env;
|
||||
|
||||
return res;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue