nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 24 lines 597 B view raw
1{ 2 lib, 3 appimageTools, 4 fetchurl, 5}: 6 7appimageTools.wrapType2 rec { 8 pname = "xlights"; 9 version = "2026.01"; 10 11 src = fetchurl { 12 url = "https://github.com/smeighan/xLights/releases/download/${version}/xLights-${version}-x86_64.AppImage"; 13 hash = "sha256-injxqVC4NhlbnY2JHdNczlOZzKfFiwqAdUAdbPG5bKw="; 14 }; 15 16 meta = { 17 description = "Sequencer for lights with USB and E1.31 drivers"; 18 homepage = "https://xlights.org"; 19 license = lib.licenses.gpl3; 20 maintainers = with lib.maintainers; [ kashw2 ]; 21 platforms = lib.platforms.linux; 22 mainProgram = "xlights"; 23 }; 24}