From 68aa7dd8a3ed9d9c86a2f261055aa96ff808d6c3 Mon Sep 17 00:00:00 2001 From: kashw2 Date: Sun, 6 Aug 2023 13:43:56 +1000 Subject: [PATCH] xlights: init at 2023.11 xlights: added kashw2 maintainer --- pkgs/applications/misc/xlights/default.nix | 19 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 21 insertions(+) create mode 100644 pkgs/applications/misc/xlights/default.nix diff --git a/pkgs/applications/misc/xlights/default.nix b/pkgs/applications/misc/xlights/default.nix new file mode 100644 index 000000000000..4147eca77649 --- /dev/null +++ b/pkgs/applications/misc/xlights/default.nix @@ -0,0 +1,19 @@ +{ lib, appimageTools, fetchurl }: + +appimageTools.wrapType2 rec { + pname = "xlights"; + version = "2023.11"; + + src = fetchurl { + url = "https://github.com/smeighan/xLights/releases/download/${version}/xLights-${version}-x86_64.AppImage"; + hash = "sha256-WUBN/Gjnsj2eUL03sXIYWgzLA7FNN7h+qpWlnXBdnw8="; + }; + + meta = with lib; { + description = "xLights is a sequencer for Lights. xLights has usb and E1.31 drivers. You can create sequences in this object oriented program. You can create playlists, schedule them, test your hardware, convert between different sequencers."; + homepage = "https://xlights.org"; + license = licenses.gpl3; + maintainers = with maintainers; [ kashw2 ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index af37e4eb4fee..685f1436d80a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14559,6 +14559,8 @@ with pkgs; xl2tpd = callPackage ../tools/networking/xl2tpd { }; + xlights = callPackage ../applications/misc/xlights/default.nix { }; + xe = callPackage ../tools/system/xe { };