chore(build123d): create the build123d scafold that is not yet working

This commit is contained in:
2026-04-26 19:56:29 -05:00
parent fbaed7851b
commit e2f2abb1ac
10 changed files with 660 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
{
description = "made with build123d";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
project-templates = {
url = "path:///home/reed/code/project-templates";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-parts.follows = "flake-parts";
};
};
outputs = {
flake-parts,
project-templates,
...
} @ inputs:
flake-parts.lib.mkFlake {inherit inputs;} {
imports = [
project-templates.flakeModules.build123d
];
systems = ["aarch64-linux" "x86_64-linux" "aarch64-darwin"];
perSystem = {pkgs, ...}: {
krantz.build123d = {
enable = true;
# src = ./.;
# runtimeDeps = with pkgs; [];
# buildDeps = with pkgs; [];
};
};
};
}