Since OpenSCAD has only limited SVG export capabilities, this implementation exports the image as PNG. Also, because OpenSCAD lacks transparency and anti-aliasing, the background colour is replaced by transparency and the image is then scaled down.
11 lines
215 B
Nix
11 lines
215 B
Nix
final: prev:
|
|
let
|
|
inherit (prev) callPackage recurseIntoAttrs;
|
|
in
|
|
{
|
|
fablab = recurseIntoAttrs (callPackage ./fablab { });
|
|
|
|
nix-gscheits = prev.recurseIntoAttrs {
|
|
artwork = callPackage ./artwork { };
|
|
};
|
|
}
|