diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-01-25 21:14:27 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2022-01-25 21:15:58 +0100 |
commit | 35dbdbedd41dea45bf38ae11d74f72c39eb304c3 (patch) | |
tree | d9d72e5e38c227c95097fb6cdd39abc24986843a /src/libstore/local-store.cc | |
parent | fcf3528ad1ad3fc0eeac9a1241b7edfebf67eb3d (diff) |
nix store ping: Report Nix daemon version
Fixes #5952.
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 |