about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeder Bergebakken Sundt <pbsds@hotmail.com>2024-05-01 00:29:28 +0200
committerGitHub <noreply@github.com>2024-05-01 00:29:28 +0200
commit508fda3e37441d38ff14817e1ff36bea267957ab (patch)
tree3a4c026686c1b22a70b66c120df9ef5601fec208
parentace2882b48d1d00904b02bc43b7e6097bec54062 (diff)
parent62e10ea5f2bc906ad31808aa35845cc6002345a4 (diff)
Merge pull request #308102 from kashw2/xlights
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 fe11b621c2f1a..c18875ca267d7 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-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";
   };
 }