From 92e74ec23645cd76db3af36bcd4d962b8cd909f8 Mon Sep 17 00:00:00 2001 From: Tom Smeets Date: Mon, 26 Feb 2018 00:03:37 +0100 Subject: [PATCH] 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 --- pkgs/applications/editors/android-studio/common.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/editors/android-studio/common.nix b/pkgs/applications/editors/android-studio/common.nix index 2c2227dd4ee..66313d68c5c 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