A Nix flake for the Plasticity CAD modeling software
The website can be found here.
Funding for this project was provided by ExoBody Systems Inc.
Standalone execution:
nix run github:alexandriaptt/plasticity-flake
Integration into system flake:
{
# Add to Flake Inputs
inputs = {
plasticity.url = "github:alexandriaptt/plasticity-flake";
. . .
}
# Inside system module:
{ inputs, system, ... }: {
environment.systemPackages = [ inputs.plasticity.packages.${system}.default ];
}
}