google-chrome-dev: Add the newly required dependencies

google-chrome-unstable won't launch without the following shared object
files: libdrm.so.2 and libgbm.so.1.
This commit is contained in:
Michael Weiss 2020-02-14 00:30:21 +01:00
parent e61b8d99c2
commit 3fadc45499
No known key found for this signature in database
GPG Key ID: 5BE487C4D4771D83

View File

@ -5,7 +5,7 @@
, libXcursor, libXext, libXfixes, libXrender, libXScrnSaver, libXcomposite, libxcb
, alsaLib, libXdamage, libXtst, libXrandr, expat, cups
, dbus, gtk2, gtk3, gdk-pixbuf, gcc-unwrapped, at-spi2-atk, at-spi2-core
, kerberos
, kerberos, libdrm, mesa
# command line arguments which are always set e.g "--disable-gpu"
, commandLineArgs ? ""
@ -60,6 +60,7 @@ let
bzip2 libcap at-spi2-atk at-spi2-core
kerberos
] ++ optional pulseSupport libpulseaudio
++ optionals (channel == "dev") [ libdrm mesa ]
++ [ gtk ];
suffix = if channel != "stable" then "-" + channel else "";