uvtools: fix missing runtime dep on emgucv
now `UVtoolsCmd convert case.sl1 Chitubox case.ctb` works! or, appears to work. i have no printer with which to test the output yet
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
buildDotnetModule,
|
buildDotnetModule,
|
||||||
dotnetCorePackages,
|
dotnetCorePackages,
|
||||||
|
emgucv,
|
||||||
fetchFromGitHub,
|
fetchFromGitHub,
|
||||||
lib,
|
lib,
|
||||||
}:
|
}:
|
||||||
@@ -19,6 +20,10 @@ buildDotnetModule rec {
|
|||||||
dotnet-sdk = dotnetCorePackages.sdk_9_0;
|
dotnet-sdk = dotnetCorePackages.sdk_9_0;
|
||||||
dotnet-runtime = dotnetCorePackages.runtime_9_0;
|
dotnet-runtime = dotnetCorePackages.runtime_9_0;
|
||||||
|
|
||||||
|
runtimeDeps = [
|
||||||
|
emgucv
|
||||||
|
];
|
||||||
|
|
||||||
# available projects:
|
# available projects:
|
||||||
# - UVtools.Installer/UVtools.Installer.wixproj (needs WixToolset, not in nixpkgs)
|
# - UVtools.Installer/UVtools.Installer.wixproj (needs WixToolset, not in nixpkgs)
|
||||||
# - UVtools.Core/UVtools.Core.csproj
|
# - UVtools.Core/UVtools.Core.csproj
|
||||||
|
Reference in New Issue
Block a user