Created
December 15, 2015 19:08
-
-
Save Denommus/bff2cf01d28b9993ee62 to your computer and use it in GitHub Desktop.
My nix configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
allowUnfree = true; | |
packageOverrides = pkgs: with pkgs; { | |
idea = recurseIntoAttrs (callPackages <nixpkgs/pkgs/applications/editors/idea> { | |
jdk = oraclejdk8; | |
androidsdk = androidsdk_4_4; | |
}); | |
}; | |
} |
@geraldus sorry for taking so long. I fixed my VM, and tried installing Android Studio with Oracle JDK, and indeed I get the same exception. There's probably some packaging issue somewhere there, I'll see if I can make anything of it.
Nevertheless, try what I recommended before: installing it from Docker.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Edward Tjörnhammar: