mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-04 03:53:56 +00:00
e65f4c7c1c
Signed-off-by: Andreas <asamonik@student.tugraz.at>
21 lines
768 B
Nix
21 lines
768 B
Nix
{ lib, appimageTools, fetchurl }:
|
|
|
|
appimageTools.wrapType2 rec {
|
|
pname = "xlights";
|
|
version = "2024.18";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/smeighan/xLights/releases/download/${version}/xLights-${version}-x86_64.AppImage";
|
|
hash = "sha256-zwOsZG7YU00wz2ZUbOVgGNQxRU81nURjW+B+XTruOuQ=";
|
|
};
|
|
|
|
meta = {
|
|
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 = lib.licenses.gpl3;
|
|
maintainers = with lib.maintainers; [ kashw2 ];
|
|
platforms = lib.platforms.linux;
|
|
mainProgram = "xlights";
|
|
};
|
|
}
|