(zilch planner): initialize build planner

This provides the core for a persistent unified build plan format.
This commit is contained in:
puck 2025-03-08 13:54:15 +00:00
parent bac63118d2
commit 930e9f6b15
3 changed files with 208 additions and 0 deletions

11
planner/default.nix Normal file
View file

@ -0,0 +1,11 @@
{ chickenPackages, callPackage }:
(callPackage ../lib/build-chicken-parallel {}) {
name = "zilch-planner";
src = ./.;
buildInputs = with chickenPackages.chickenEggs; [
chickenPackages.chicken
r7rs
srfi-146
];
}