1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-12-07 17:41:00 +01:00

Move libflake/flake/* to libflake

This commit is contained in:
Eelco Dolstra 2025-04-23 17:11:55 +02:00
parent 876f676d90
commit bc67e47298
9 changed files with 12 additions and 12 deletions

View file

@ -1,15 +0,0 @@
#include "nix/flake/settings.hh"
#include "nix/flake/flake-primops.hh"
namespace nix::flake {
Settings::Settings() {}
void Settings::configureEvalSettings(nix::EvalSettings & evalSettings) const
{
evalSettings.extraPrimOps.emplace_back(primops::getFlake(*this));
evalSettings.extraPrimOps.emplace_back(primops::parseFlakeRef);
evalSettings.extraPrimOps.emplace_back(primops::flakeRefToString);
}
} // namespace nix