1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-30 11:43:15 +02:00

Move MountedSourceAccessor to libutil

This commit is contained in:
Eelco Dolstra 2025-02-18 22:30:23 +01:00
parent f201446983
commit 0da81343d7
4 changed files with 2 additions and 2 deletions

View file

@ -0,0 +1,9 @@
#pragma once
#include "source-accessor.hh"
namespace nix {
ref<SourceAccessor> makeMountedSourceAccessor(std::map<CanonPath, ref<SourceAccessor>> mounts);
}