summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/editors/rstudio
AgeCommit message (Collapse)Author
2020-04-28Rstudio: 1.2.5033 -> 1.2.5042Alex Branham
Need the patch to backport a fix so Rstudio compiles against R 4.0.0
2020-04-10treewide: Per RFC45, remove all unquoted URLsMichael Reilly
2020-02-29rstudio: 1.2.1335 -> 1.2.5033Simon Lackerbauer
2020-02-09rstudio: use qt5's mkDerivation (#74381)Thomas Churchman
2019-09-05rstudio: fix build with new hunspell-dictsEamonn Coughlan
2019-08-17treewide: name -> pnamevolth
2019-08-15rstudio: fix buildAverell Dalton
2019-04-14rstudio-preview: remove packageAverell Dalton
2019-04-14rstudio: 1.1.463 -> 1.2.1335Averell Dalton
2019-01-21rstudio-preview: update to currentAverell Dalton
2019-01-21rstudio(-preview): fix buildAverell Dalton
2018-11-03rstudio-preview: init at f33fb2b2Averell Dalton
2018-10-27rstudio: 1.1.456 -> 1.1.463Averell Dalton
2018-08-30rstudio: 1.1.442 -> 1.1.456 (#45781)Simon Lackerbauer
2018-04-17rstudio: 1.1.423 -> 1.1.442Simon Lackerbauer
2018-02-08rstudio: 1.1.414 -> 1.1.423mingchuan
Also fixes the version number displayed in GUI.
2018-01-15rstudio: 1.1.383 -> 1.1.414mingchuan
2018-01-05treewide: homepage+src updates (found by repology, #33263)Samuel Dionne-Riel
2017-11-10rstudio: fix buildmingchuan
2017-10-17rstudio: enable parallel buildingNikolay Amiantov
Also cleanup inputs.
2017-10-17boost: make 1.65 the defaultNikolay Amiantov
2017-10-16rstudio: 1.1.351 -> 1.1.383Simon Lackerbauer
2017-08-31rstudio: 1.1.216 -> 1.1.351Simon Lackerbauer
2017-08-20rstudio: fix buildmingchuan
2017-06-18qt5: rename qmakeHook to qmakeThomas Tuegel
2017-05-01rstudio: Fix recompilation issue with custom package setChris Hodapp
This attempts to fix the issue described at https://github.com/NixOS/nixpkgs/pull/22219#issuecomment-291801133. Any change to the custom packages passed to RStudio causes this to completely rebuild RStudio, which is completely unnecessary and also a bit of a hindrance as it's a fairly slow build. This rolls back most of that old PR, and instead implements something more like rWrapper. Existing configurations with the old useRPackages will break.
2017-04-30RStudio: 0.98.110 -> 1.1.216Changlin Li
This fixes incompatibilities introduced by a new R version in d16c38a260ef41ae648f994918f491437fb7c75c It also fixes #25315 as a result.
2017-01-27RStudio: Optionally allow packages from custom R environmentChris Hodapp
https://nixos.org/nixpkgs/manual/#r-packages contains a method for setting up an R environment with a specific set of libraries, and it creates an R wrapper which points R to those libraries. The package RStudio relies on the standard R package, which then cannot access any of the libraries specified in a custom R environment. While one may easily use pkgs.rstudio.override to change rstudio's R dependency to the custom R environment, this accomplishes nothing because while RStudio runs the correct R wrapper it clears out the environment variable R_LIBS_SITE - and so it is still unable to use any of those packages. In order to work around this problem, these changes allow the user to optionally modify rstudio's wrapper to set environment variable R_PROFILE_USER to an R script which sets R's .libPaths(..) to point to the same libraries; that script is generated from R_LIBS_SITE in the R wrapper. By default, this change has no effect. If R is overridden to something else, and if useRPackages is changed from its default of false, then the change described above is made; for instance: { packageOverrides = pkgs: let self = pkgs.pkgs; in rec { rEnv = pkgs.rWrapper.override { packages = with self.rPackages; [ dplyr ggplot2 e1071 rpart reshape ]; }; rstudioEnv = pkgs.rstudio.override { R = rEnv; useRPackages = true; }; }; }
2016-12-22rstudio: make mkDerivation recursiveLaverne Schrock
Needed since we want to access desktopItem from postInstall.
2016-12-22rstudio: add desktop fileLaverne Schrock
Fixes #20230
2015-12-05Rename 'emery' maintainer handle to 'ehmry', fixes #11493Emery Hemingway
Communication happens on Github so names should be consistent.
2015-10-25rstudio: add run-time dependency gnumakemucaho
fixes #9163.
2015-03-25rstudio: fix Emacs syntax highlightingPeter Simons
2015-03-25RStudio: initial commit at version 0.98.110Emery Hemingway
2015-03-25Revert "RStudio: initial commit at version 0.98.110"Domen Kožar
This reverts commit 56e21d05e874a29ad0d51aea18e8c982c7c826f3. It's missing a file, see https://github.com/NixOS/nixpkgs/pull/6957
2015-03-23RStudio: initial commit at version 0.98.110Emery Hemingway