LycheeSlicer: fix mainProgram, wayland and extraPkgs, add maintainer ZachDavies (#432482)

This commit is contained in:
Niklas Korz 2025-08-12 15:27:02 +02:00 committed by GitHub
commit 6f2facfedf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 17 additions and 4 deletions

View File

@ -28147,6 +28147,12 @@
githubId = 908716; githubId = 908716;
name = "Zach Coyle"; name = "Zach Coyle";
}; };
ZachDavies = {
name = "Zach Davies";
email = "zdmalta@proton.me";
github = "ZachDavies";
githubId = 131615861;
};
Zaczero = { Zaczero = {
name = "Kamil Monicz"; name = "Kamil Monicz";
email = "kamil@monicz.dev"; email = "kamil@monicz.dev";

View File

@ -4,6 +4,8 @@
makeDesktopItem, makeDesktopItem,
lib, lib,
xorg, xorg,
wayland,
wayland-protocols,
}: }:
let let
pname = "LycheeSlicer"; pname = "LycheeSlicer";
@ -18,7 +20,7 @@ let
name = "Lychee Slicer"; name = "Lychee Slicer";
genericName = "Resin Slicer"; genericName = "Resin Slicer";
comment = "All-in-one 3D slicer for Resin and Filament"; comment = "All-in-one 3D slicer for Resin and Filament";
desktopName = "Lychee"; desktopName = "LycheeSlicer";
noDisplay = false; noDisplay = false;
exec = "lychee"; exec = "lychee";
terminal = false; terminal = false;
@ -39,16 +41,21 @@ appimageTools.wrapType2 {
install -Dm444 -t $out/share/applications ${desktopItem}/share/applications/* install -Dm444 -t $out/share/applications ${desktopItem}/share/applications/*
''; '';
extraLibraries = [ extraPkgs = _: [
xorg.libxshmfence xorg.libxshmfence
wayland
wayland-protocols
]; ];
meta = { meta = {
description = "All-in-one 3D slicer for resin and FDM printers"; description = "All-in-one 3D slicer for resin and FDM printers";
homepage = "https://lychee.mango3d.io/"; homepage = "https://lychee.mango3d.io/";
license = lib.licenses.unfree; license = lib.licenses.unfree;
maintainers = with lib.maintainers; [ tarinaky ]; maintainers = with lib.maintainers; [
tarinaky
ZachDavies
];
platforms = [ "x86_64-linux" ]; platforms = [ "x86_64-linux" ];
mainProgram = "lychee"; mainProgram = "LycheeSlicer";
}; };
} }