Advertisement
Guest User

android on nixpkgs

a guest
Oct 21st, 2019
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. {
  2. # for flashplayer
  3. allowUnfree = true;
  4. firefox = {
  5. enableAdobeFlash = false;
  6. };
  7.  
  8. android_sdk.accept_license = true;
  9. pulseaudio = true;
  10. # wine.build = "wine64";
  11.  
  12. packageOverrides = super: let self = super.pkgs; in
  13. {
  14.  
  15. rEnv = super.rWrapper.override {
  16. packages = with self.rPackages; [
  17. devtools
  18. ggplot2
  19. reshape2
  20. yaml
  21. optparse
  22. fitdistrplus
  23. ];
  24. };
  25. };
  26.  
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement