Merge pull request #247444 from kashw2/xlights

This commit is contained in:
Artturi 2023-09-02 03:43:36 +03:00 committed by GitHub
commit 5e8369bc4d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 0 deletions

View file

@ -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;
};
}

View file

@ -14571,6 +14571,8 @@ with pkgs;
xl2tpd = callPackage ../tools/networking/xl2tpd { };
xlights = callPackage ../applications/misc/xlights/default.nix { };
xe = callPackage ../tools/system/xe { };