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:
26
pkgs/by-name/mslicer/package.nix
Normal file
26
pkgs/by-name/mslicer/package.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
Reference in New Issue
Block a user