Merge "libstore: add missing #include on darwin" into main

This commit is contained in:
Lily Ballard 2024-10-22 02:05:44 +00:00 committed by Gerrit Code Review
commit 5ce1d8463a

View file

@ -9,6 +9,9 @@
#include <unistd.h> #include <unistd.h>
#include <errno.h> #include <errno.h>
#if __APPLE__
#include <regex>
#endif
namespace nix { namespace nix {