From a28ae98486b0faba06d079bf846876bce4423077 Mon Sep 17 00:00:00 2001 From: ZachDavies Date: Sun, 10 Aug 2025 13:56:28 +0200 Subject: [PATCH] LycheeSlicer: fixed extraPkgs and added wayland libraries LycheeSlicer: trailing space fixed for linter --- pkgs/by-name/ly/LycheeSlicer/package.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/ly/LycheeSlicer/package.nix b/pkgs/by-name/ly/LycheeSlicer/package.nix index 0893bf8d8760..1c859fd9767c 100644 --- a/pkgs/by-name/ly/LycheeSlicer/package.nix +++ b/pkgs/by-name/ly/LycheeSlicer/package.nix @@ -4,6 +4,8 @@ makeDesktopItem, lib, xorg, + wayland, + wayland-protocols, }: let pname = "LycheeSlicer"; @@ -41,13 +43,15 @@ appimageTools.wrapType2 { extraPkgs = _: [ xorg.libxshmfence + wayland + wayland-protocols ]; meta = { description = "All-in-one 3D slicer for resin and FDM printers"; homepage = "https://lychee.mango3d.io/"; license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ + maintainers = with lib.maintainers; [ tarinaky ZachDavies ];