diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-12-04 18:08:26 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-01-01 15:23:54 +0100 |
commit | 1fcb98ca54e882330f3c64dfafe04ad2258d4780 (patch) | |
tree | 5dc208ec9205f5a4a030944ee6453824f3534f48 | |
parent | 65542947541cd59548bbecc6782f118b9cde83ab (diff) |
gnu: prusa-slicer: Mark as tunable.
* gnu/packages/engineering.scm (prusa-slicer)[properties]: New field.
-rw-r--r-- | gnu/packages/engineering.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index e930dde40c..eec835f97c 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -3262,4 +3262,7 @@ visualization, matrix manipulation.") (synopsis "G-code generator for 3D printers (RepRap, Makerbot, Ultimaker etc.)") (description "PrusaSlicer takes 3D models (STL, OBJ, AMF) and converts them into G-code instructions for FFF printers or PNG layers for mSLA 3D printers.") - (license license:agpl3))) + (license license:agpl3) + + ;; Mark as tunable to take advantage of SIMD code in Eigen and in libigl. + (properties '((tunable? . #t))))) |