We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83416ed commit a4262c2Copy full SHA for a4262c2
src/toolchain/nix.rs
@@ -64,7 +64,7 @@ impl ToolchainDriver for NixInputs {
64
lockfile_bytes: &[u8],
65
) -> Result<Self> {
66
let nix = ToolBinaryInfo::via_which("nix")?;
67
- let kettle = ToolBinaryInfo::via_which("kettle")?;
+ let kettle = ToolBinaryInfo::kettle_info()?;
68
let flake_deps = parse_flake_lock(lockfile_bytes)?;
69
let graph = evaluate_derivation_graph(path)?;
70
let derivation_count = graph.as_object().map(|o| o.len()).unwrap_or(0);
0 commit comments