diff options
Diffstat (limited to 'tvix/glue/src/lib.rs')
-rw-r--r-- | tvix/glue/src/lib.rs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tvix/glue/src/lib.rs b/tvix/glue/src/lib.rs new file mode 100644 index 000000000000..b2f586ce52d6 --- /dev/null +++ b/tvix/glue/src/lib.rs @@ -0,0 +1,22 @@ +pub mod builtins; +pub mod known_paths; +pub mod refscan; +pub mod tvix_build; +pub mod tvix_io; +pub mod tvix_store_io; + +#[cfg(test)] +mod tests; + +/// Tell the Evaluator to resolve `<nix>` to the path `/__corepkgs__`, +/// which has special handling in [tvix_io::TvixIO]. +/// This is used in nixpkgs to import `fetchurl.nix` from `<nix>`. +pub fn configure_nix_path<IO>( + eval: &mut tvix_eval::Evaluation<IO>, + nix_search_path: &Option<String>, +) { + eval.nix_path = nix_search_path + .as_ref() + .map(|p| format!("nix=/__corepkgs__:{}", p)) + .or_else(|| Some("nix=/__corepkgs__".to_string())); +} |