Merge pull request #308102 from kashw2/xlights

xlights: fixed invocation for `nix run`
This commit is contained in:
Peder Bergebakken Sundt
2024-05-01 00:29:28 +02:00
committed by GitHub
+6 -6
View File
@@ -9,12 +9,12 @@ appimageTools.wrapType2 rec {
hash = "sha256-h5jChYlTzKenZl0EnScU+vA+535pICXKdUhj8zAU4wc=";
};
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.";
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 = licenses.gpl3;
maintainers = with maintainers; [ kashw2 ];
platforms = platforms.linux;
mainProgram = "xlights-${version}";
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ kashw2 ];
platforms = lib.platforms.linux;
mainProgram = "xlights";
};
}