aux-search/flake-info/src/lib.rs
2022-07-21 12:20:52 +02:00

57 lines
1.5 KiB
Rust

#![recursion_limit = "256"]
use std::path::PathBuf;
use anyhow::Result;
use data::{import::Kind, Export, Flake, Source};
pub mod commands;
pub mod data;
pub mod elastic;
pub use commands::get_flake_info;
use log::trace;
pub fn process_flake(
source: &Source,
kind: &data::import::Kind,
temp_store: bool,
extra: &[String],
) -> Result<(Flake, Vec<Export>)> {
let mut info = commands::get_flake_info(source.to_flake_ref(), temp_store, extra)?;
info.source = Some(source.clone());
let packages = commands::get_derivation_info(source.to_flake_ref(), *kind, temp_store, extra)?;
trace!("flake info: {:#?}", info);
trace!("flake content: {:#?}", packages);
let exports: Vec<Export> = packages
.into_iter()
.map(|p| Export::flake(info.clone(), p))
.collect::<Result<Vec<Export>>>()?;
Ok((info, exports))
}
pub fn process_nixpkgs(nixpkgs: &Source, kind: &Kind) -> Result<Vec<Export>, anyhow::Error> {
let drvs = if matches!(kind, Kind::All | Kind::Package) {
commands::get_nixpkgs_info(nixpkgs.to_flake_ref())?
} else {
Vec::new()
};
let mut options = if matches!(kind, Kind::All | Kind::Option) {
commands::get_nixpkgs_options(nixpkgs.to_flake_ref())?
} else {
Vec::new()
};
let mut all = drvs;
all.append(&mut options);
let exports = all
.into_iter()
.map(Export::nixpkgs)
.collect::<Result<Vec<Export>>>()?;
Ok(exports)
}