7638578342
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; }; }; }
41 lines
1.3 KiB
Nix
41 lines
1.3 KiB
Nix
{ stdenv, R, makeWrapper, recommendedPackages, packages }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = R.name + "-wrapper";
|
|
|
|
buildInputs = [makeWrapper R] ++ recommendedPackages ++ packages;
|
|
|
|
unpackPhase = ":";
|
|
|
|
# This filename is used in 'installPhase', but needs to be
|
|
# referenced elsewhere. This will be relative to this package's
|
|
# path.
|
|
passthru = {
|
|
fixLibsR = "fix_libs.R";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cd ${R}/bin
|
|
for exe in *; do
|
|
makeWrapper ${R}/bin/$exe $out/bin/$exe \
|
|
--prefix "R_LIBS_SITE" ":" "$R_LIBS_SITE"
|
|
done
|
|
# RStudio (and perhaps other packages) overrides the R_LIBS_SITE
|
|
# which the wrapper above applies, and as a result packages
|
|
# installed in the wrapper (as in the method described in
|
|
# https://nixos.org/nixpkgs/manual/#r-packages) aren't visible.
|
|
# The below turns R_LIBS_SITE into some R startup code which can
|
|
# correct this.
|
|
echo "# Autogenerated by wrapper.nix from R_LIBS_SITE" > $out/${passthru.fixLibsR}
|
|
echo -n ".libPaths(c(.libPaths(), \"" >> $out/${passthru.fixLibsR}
|
|
echo -n $R_LIBS_SITE | sed -e 's/:/", "/g' >> $out/${passthru.fixLibsR}
|
|
echo -n "\"))" >> $out/${passthru.fixLibsR}
|
|
echo >> $out/${passthru.fixLibsR}
|
|
'';
|
|
|
|
meta = {
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|