tvl-depot/tvix/serde/examples/nixpkgs.rs
Aspen Smith dfe137786c refactor(tvix/eval): Builderize Evaluation
Make constructing of a new Evaluation use the builder pattern rather
than setting public mutable fields. This is currently a pure
refactor (no functionality has changed) but has a few advantages:

- We've encapsulated the internals of the fields in Evaluation, meaning
  we can change them without too much breakage of clients
- We have type safety that prevents us from ever changing the fields of
  an Evaluation after it's built (which matters more in a world where we
  reuse Evaluations).

More importantly, this paves the road for doing different things with
the construction of an Evaluation - notably, sharing certain things like
the GlobalsMap across subsequent evaluations in eg the REPL.

Fixes: b/262
Change-Id: I4a27116faac14cdd144fc7c992d14ae095a1aca4
Reviewed-on: https://cl.tvl.fyi/c/depot/+/11956
Tested-by: BuildkiteCI
Autosubmit: aspen <root@gws.fyi>
Reviewed-by: flokli <flokli@flokli.de>
2024-07-06 15:03:46 +00:00

34 lines
818 B
Rust

//! This program demonstrates deserialising some configuration
//! structure from Nix code that makes use of nixpkgs.lib
//!
//! This example does not add the full set of Nix features (i.e.
//! builds & derivations).
use serde::Deserialize;
#[derive(Debug, Deserialize)]
struct Config {
host: String,
port: usize,
}
fn main() {
let code = r#"
let
lib = import <nixpkgs/lib>;
host = lib.strings.concatStringsSep "." ["foo" "example" "com"];
in {
inherit host;
port = 4242;
}
"#;
let result = tvix_serde::from_str_with_config::<Config, _>(code, |eval_builder| {
eval_builder.enable_impure(None)
});
match result {
Ok(cfg) => println!("Config says: {}:{}", cfg.host, cfg.port),
Err(e) => eprintln!("{:?} / {}", e, e),
}
}