about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPol Dellaiera <pol.dellaiera@protonmail.com>2023-12-20 08:58:06 +0100
committerteutat3s <10206665+teutat3s@users.noreply.github.com>2024-04-12 02:22:48 +0200
commitcb094250b9b0233487b9763ef108bb5281fa70b2 (patch)
tree3d2b83a7bddf7ecbcea70950fad8a361cd195a09 /pkgs
parent51651a540816273b67bc4dedea2d37d116c5f7fe (diff)
electron: add missing `meta.mainProgram`
(cherry picked from commit 7501d682b8ea82d061fc87b9aebf97246725d351)
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/electron/binary/generic.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/tools/electron/binary/generic.nix b/pkgs/development/tools/electron/binary/generic.nix
index bf845eed8d86f..ed12f98bafe93 100644
--- a/pkgs/development/tools/electron/binary/generic.nix
+++ b/pkgs/development/tools/electron/binary/generic.nix
@@ -36,6 +36,7 @@ let
     homepage = "https://github.com/electron/electron";
     license = licenses.mit;
     maintainers = with maintainers; [ travisbhartwell manveru prusnak ];
+    mainProgram = "electron";
     platforms = [ "x86_64-darwin" "x86_64-linux" "armv7l-linux" "aarch64-linux" ]
       ++ optionals (versionAtLeast version "11.0.0") [ "aarch64-darwin" ]
       ++ optionals (versionOlder version "19.0.0") [ "i686-linux" ];