mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 04:53:27 +00:00
68aa7dd8a3
xlights: added kashw2 maintainer
20 lines
738 B
Nix
20 lines
738 B
Nix
{ 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;
|
|
};
|
|
}
|