summary refs log tree commit diff
diff options
context:
space:
mode:
authorTom Smeets <Tom.TSmeets@Gmail.com>2018-02-26 00:03:37 +0100
committerTom Smeets <Tom.TSmeets@Gmail.com>2018-02-26 00:03:37 +0100
commit92e74ec23645cd76db3af36bcd4d962b8cd909f8 (patch)
treee44946c900af62111a03c5a9466ae73a57ca14bf
parent48479b66df73c669ccd1d339f233e88e478f02d7 (diff)
downloadnixlib-92e74ec23645cd76db3af36bcd4d962b8cd909f8.tar
nixlib-92e74ec23645cd76db3af36bcd4d962b8cd909f8.tar.gz
nixlib-92e74ec23645cd76db3af36bcd4d962b8cd909f8.tar.bz2
nixlib-92e74ec23645cd76db3af36bcd4d962b8cd909f8.tar.lz
nixlib-92e74ec23645cd76db3af36bcd4d962b8cd909f8.tar.xz
nixlib-92e74ec23645cd76db3af36bcd4d962b8cd909f8.tar.zst
nixlib-92e74ec23645cd76db3af36bcd4d962b8cd909f8.zip
android-studio: Depend on ncurses5
The android ndk fails to compile the test program because it could not
find the `ncurses.so.5` library.

Also, `ncurses5` is a dependency according to https://developer.android.com/studio/troubleshoot.html#linux_libraries
-rw-r--r--pkgs/applications/editors/android-studio/common.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/applications/editors/android-studio/common.nix b/pkgs/applications/editors/android-studio/common.nix
index 2c2227dd4ee9..66313d68c5ce 100644
--- a/pkgs/applications/editors/android-studio/common.nix
+++ b/pkgs/applications/editors/android-studio/common.nix
@@ -106,6 +106,7 @@ let
   # environment is used as a work around for that.
   fhsEnv = buildFHSUserEnv {
     name = "${pname}-fhs-env";
+    multiPkgs = pkgs: [ pkgs.ncurses5 ];
   };
 
 in