9 lines
189 B
Nix
9 lines
189 B
Nix
{
|
|
callPackage,
|
|
freecad,
|
|
}:
|
|
{
|
|
python-path = callPackage ./python-path.nix { };
|
|
modules = callPackage ./modules.nix { };
|
|
withIfcSupport = freecad.override { ifcSupport = true; };
|
|
}
|