We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68bd2e4 commit e9c5d72Copy full SHA for e9c5d72
src/libstore/include/nix/store/globals.hh
@@ -1419,7 +1419,8 @@ public:
1419
"system": "aarch64-linux",
1420
"tmpDir": "/private/tmp/nix-build-hello-2.12.2.drv-0/build",
1421
"tmpDirInSandbox": "/build",
1422
- "topTmpDir": "/private/tmp/nix-build-hello-2.12.2.drv-0"
+ "topTmpDir": "/private/tmp/nix-build-hello-2.12.2.drv-0",
1423
+ "version": 1
1424
}
1425
)",
1426
{}, // aliases
src/libstore/unix/build/external-derivation-builder.cc
@@ -49,6 +49,7 @@ struct ExternalDerivationBuilder : DerivationBuilderImpl
49
50
auto json = nlohmann::json::object();
51
52
+ json.emplace("version", 1);
53
json.emplace("builder", drv.builder);
54
{
55
auto l = nlohmann::json::array();
0 commit comments