about summary refs log tree commit diff
diff options
context:
space:
mode:
authorkashw2 <supra4keanu@hotmail.com>2024-05-01 07:32:09 +1000
committerkashw2 <supra4keanu@hotmail.com>2024-05-01 07:32:23 +1000
commit62e10ea5f2bc906ad31808aa35845cc6002345a4 (patch)
tree7675f6bf7d1353aabb71fef612c6117a6154b7de
parent84956c5a00d1d139eb890d436ac69cc06089cb28 (diff)
xlights: fixed invocation for `nix run`
-rw-r--r--pkgs/by-name/xl/xlights/package.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/by-name/xl/xlights/package.nix b/pkgs/by-name/xl/xlights/package.nix
index 8e83f64417775..4d0fce7abb25b 100644
--- a/pkgs/by-name/xl/xlights/package.nix
+++ b/pkgs/by-name/xl/xlights/package.nix
@@ -9,12 +9,12 @@ appimageTools.wrapType2 rec {
     hash = "sha256-eXoSZUbwKu7174UVPguK9R0MgaMrV2jtRtLK/zSGvtw=";
   };
 
-  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";
   };
 }