From 8a919efbe9428f73c0afc0207d15a24af4fb8e56 Mon Sep 17 00:00:00 2001 From: Jesse Li Date: Thu, 14 Dec 2017 14:32:04 -0500 Subject: [PATCH] Add .deb specific dependencies (#1858) Some barebones debian-based systems (e.g. Docker containers) don't come with the libasound2 and libxss1 libraries, which electron-builder does not include by default. --- package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.json b/package.json index 7b08e4755..9b5e426fb 100644 --- a/package.json +++ b/package.json @@ -116,6 +116,9 @@ ], "icon": "build/icons/png" }, + "deb": { + "depends": ["gconf2", "gconf-service", "libnotify4", "libappindicator1", "libxtst6", "libnss3", "libasound2", "libxss1"] + }, "files": [ "package.json", "config/default.json",