summary refs log tree commit diff
path: root/pkgs/applications/editors/brackets
diff options
context:
space:
mode:
authorDamien Biasotto <damien.biasotto@rezdy.com>2019-04-09 11:28:50 +1000
committerDamien Biasotto <damien.biasotto@rezdy.com>2019-04-09 11:28:50 +1000
commit433566f89ef6ed6fea8c7824b3fc026cc6fc8285 (patch)
tree0be9cf2b854287f05530e2e612fc6734f4fb132f /pkgs/applications/editors/brackets
parent2fdca0eb58698a1c379d55e23a6dbde51416e048 (diff)
downloadnixpkgs-433566f89ef6ed6fea8c7824b3fc026cc6fc8285.tar
nixpkgs-433566f89ef6ed6fea8c7824b3fc026cc6fc8285.tar.gz
nixpkgs-433566f89ef6ed6fea8c7824b3fc026cc6fc8285.tar.bz2
nixpkgs-433566f89ef6ed6fea8c7824b3fc026cc6fc8285.tar.lz
nixpkgs-433566f89ef6ed6fea8c7824b3fc026cc6fc8285.tar.xz
nixpkgs-433566f89ef6ed6fea8c7824b3fc026cc6fc8285.tar.zst
nixpkgs-433566f89ef6ed6fea8c7824b3fc026cc6fc8285.zip
brackets: add missing dependencies.
libexpat and libXdamage seems to be required for brackets to run
Diffstat (limited to 'pkgs/applications/editors/brackets')
-rw-r--r--pkgs/applications/editors/brackets/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/editors/brackets/default.nix b/pkgs/applications/editors/brackets/default.nix
index 1065564f7b4..ce9f10f39c4 100644
--- a/pkgs/applications/editors/brackets/default.nix
+++ b/pkgs/applications/editors/brackets/default.nix
@@ -1,10 +1,10 @@
 { 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;
 
 let
   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
 stdenv.mkDerivation rec {