infra:tools:sovol-sv08-max
This is an old revision of the document!
Sovol SV08 Max
Commercially available printer inspired by Voron 2.4, at ridiculous size - 50×50cm
http://inari.waw.hackerspace.pl/
Hostname choice is a reference to Inari Ōkami
Owner: ari
Printer profiles
There are printer profiles provided by Sovol: https://github.com/Sovol3d/Sovol-OrcaSlicer/releases/download/v2.3.0.4/Sovo.Profilesl.zip
Importing “system” profiles in OrcaSlicer is rather annoying. Here's a naive approach to embed them at build time using Nix. Fair warning: this causes a rather lengthy rebuild; there has to be a better way:
environment.systemPackages = [
(let
sovol-profiles = pkgs.fetchzip {
url =
"https://github.com/Sovol3d/Sovol-OrcaSlicer/releases/download/v2.3.0.4/Sovo.Profilesl.zip";
hash = "sha256-CvcM3Cst35Bz2lloejkKsSla1qrHHuDMxU67da5eHVs=";
};
in pkgs.orca-slicer.overrideAttrs (old: {
prePatch = old.prePatch + ''
rm -rf resources/profiles/Sovol resources/profiles/Sovol.json
cp --target-directory=resources/profiles -r ${sovol-profiles}/*
'';
}))
];
infra/tools/sovol-sv08-max.1757940631.txt.gz · Last modified: by ar