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

View file

@ -85,6 +85,9 @@ TEST_JSON(Derivation, impure,
"bar",
"baz"
],
"env": {
"BIG_BAD": "WOLF"
},
"outputs": {}
})",
({
@ -107,6 +110,12 @@ TEST_JSON(Derivation, impure,
"bar",
"baz",
};
drv.env = {
{
"BIG_BAD",
"WOLF",
},
};
drv;
}))