brackets: add missing dependencies.

libexpat and libXdamage seems to be required for brackets to run
This commit is contained in:
Damien Biasotto 2019-04-09 11:28:50 +10:00
parent 2fdca0eb58
commit 433566f89e

View File

@ -1,10 +1,10 @@
{ stdenv, fetchurl, gtk2, glib, gdk_pixbuf, alsaLib, nss, nspr, gconf { stdenv, fetchurl, gtk2, glib, gdk_pixbuf, alsaLib, nss, nspr, gconf
, cups, libgcrypt_1_5, systemd, dbus }: , cups, libgcrypt_1_5, systemd, dbus, libXdamage, expat }:
with stdenv.lib; with stdenv.lib;
let let
bracketsLibs = makeLibraryPath [ bracketsLibs = makeLibraryPath [
gtk2 glib gdk_pixbuf stdenv.cc.cc.lib alsaLib nss nspr gconf cups libgcrypt_1_5 dbus systemd gtk2 glib gdk_pixbuf stdenv.cc.cc.lib alsaLib nss nspr gconf cups libgcrypt_1_5 dbus systemd libXdamage expat
]; ];
in in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {