#pragma once #include "path.hh" namespace nix { struct StorePathWithOutputs { StorePath path; std::set outputs; std::string to_string(const Store & store) const; }; std::pair parsePathWithOutputs(std::string_view s); }