mslicer: init at 0.2.0

i haven't tested anything beyond the --help flags

hopefully this generates .goo files which are more compatible than UVtools'
This commit is contained in:
2025-03-11 07:29:13 +00:00
parent 69297280eb
commit 3c1a762c25

View File

@@ -0,0 +1,26 @@
{
lib,
rustPlatform,
fetchFromGitHub,
}:
rustPlatform.buildRustPackage rec {
pname = "mslicer";
version = "0.2.0";
src = fetchFromGitHub {
owner = "connorslade";
repo = pname;
rev = version;
hash = "sha256-x46k1O7EqXMEwNATG4b7zHIYaMDVveRiq/Z5KPih0Fo=";
};
cargoHash = "sha256-mRbEwxR6bMkybxe7H1dX4Qa1elGiw/lSSz9sSTtp1zw=";
useFetchCargoVendor = true;
meta = with lib; {
description = "An experimental open source slicer for masked stereolithography (resin) printers.";
homepage = "https://connorcode.com/projects/mslicer";
maintainers = with maintainers; [ colinsane ];
};
}