1
0
Fork 0
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:
John Ericson 2023-02-20 17:32:19 -05:00
parent c7bd3a874f
commit 208c8d326d
2 changed files with 10 additions and 0 deletions

View file

@ -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;
}