1 unstable release
0.1.0 | May 25, 2024 |
---|
19KB
480 lines
nixrs
Examples
See examples
cd nixrs && cargo run --example eval
use nixrs::{init, state::State, store::Store};
fn main() -> anyhow::Result<()> {
init()?;
let mut state = State::new(Store::new("daemon")?)?;
let libclang = &state.eval("(import <nixpkgs> {}).libclang")?;
dbg!(state.build(libclang)?);
Ok(())
}
Dependencies
~0.3–2.5MB
~53K SLoC