diff options
Diffstat (limited to 'src/libstore/local-store.cc')
-rw-r--r-- | src/libstore/local-store.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/libstore/local-store.cc b/src/libstore/local-store.cc index 1807940d8..284e385e6 100644 --- a/src/libstore/local-store.cc +++ b/src/libstore/local-store.cc @@ -1919,4 +1919,10 @@ void LocalStore::addBuildLog(const StorePath & drvPath, std::string_view log) throw SysError("renaming '%1%' to '%2%'", tmpFile, logPath); } +std::optional<std::string> LocalStore::getVersion() +{ + return nixVersion; +} + + } // namespace nix |