nixrs

nix bibnding for rust

1 unstable release

0.1.0 May 25, 2024

MIT license

19KB
480 lines

nixrs

Nix binding for Rust

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