| 962 | } |
| 963 | |
| 964 | void EvalState::mkStorePathString(const StorePath & p, Value & v) |
| 965 | { |
| 966 | v.mkString( |
| 967 | store->printStorePath(p), |
| 968 | NixStringContext{ |
| 969 | NixStringContextElem::Opaque{.path = p}, |
| 970 | }, |
| 971 | mem); |
| 972 | } |
| 973 | |
| 974 | std::string EvalState::mkOutputStringRaw( |
| 975 | const SingleDerivedPath::Built & b, |
no test coverage detected