summary refs log tree commit diff
path: root/pkgs/development/r-modules
Commit message (Collapse)AuthorAge
* cran-packages.nix: fix a couple of buildsPeter Simons2014-06-09
|
* r-modules: set meta.hydraPlatforms for all R packagesPeter Simons2014-06-07
|
* Updated some CRAN packages and fixed dependenciesJustin Bedo2014-05-15
|
* r-RcppArmadillo: fix build (and update to 0.4.300.0)Peter Simons2014-05-07
|
* r-generic-builder.nix: build packages from the extracted $srcdir so that we ↵Peter Simons2014-05-07
| | | | have a chance to patch them
* r-curl: fix buildPeter Simons2014-05-05
|
* cran-packages.nix: provide meta.homepage links for all modulesPeter Simons2014-05-05
|
* r-generic-builder: don't let derivation override the naming schemePeter Simons2014-05-05
|
* R: simplify the generic builderPeter Simons2014-05-04
|
* r-generic-builder: clean up the expressionPeter Simons2014-05-04
|
* R: don't install the "recommended packages"Peter Simons2014-05-04
| | | | | | | | These packages come with R, but if we install them as part of this build, then we cannot update them without re-building R as well. Instead, we add those packages to the R environment through the r-wrapper. This means that recommended packages can be updated in cran-packgaes.nix, and those updates have an effect on the installation without re-building R itself.
* Move r-packages.nix into the r-modules directory.Peter Simons2014-05-04
|
* cosmetic: move the R-wrapper into its own directoryPeter Simons2014-05-04
|
* R: added wrapper script that provides "R" and "Rscript" binaries that know ↵Peter Simons2014-05-04
| | | | | | | | | | | | | | | | about extra libraries Configure an override in ~/.nixpkgs/config.nix as follows: { packageOverrides = pkgs: { rWrapper = pkgs.rWrapper.override { packages = with pkgs.rPackages; [ Defaults dataTable foreach xtable ]; }; }; }
* Wrapped R's package system similarly to perlPackagesJustin Bedo2013-09-28