about summary refs log blame commit diff
path: root/tvix/nix-compat/src/lib.rs
blob: 4c327fa4569b73b509771395b9c17e200751013f (plain) (tree)
1
2
3
4
5
6
7
8
9

                                
                     
                   
            
                
                 
                  
               
                
                  
                   

                        
             
 
                          
                   
                          
                                    
extern crate self as nix_compat;

pub(crate) mod aterm;
pub mod derivation;
pub mod nar;
pub mod narinfo;
pub mod nix_http;
pub mod nixbase32;
pub mod nixcpp;
pub mod nixhash;
pub mod path_info;
pub mod store_path;

#[cfg(feature = "wire")]
pub mod wire;

#[cfg(feature = "daemon")]
pub mod nix_daemon;
#[cfg(feature = "daemon")]
pub use nix_daemon::worker_protocol;