R: update to version 3.1.3

This commit is contained in:
Peter Simons 2015-03-09 15:55:17 +01:00
parent 97feb65c00
commit 3f7de179f5
2 changed files with 8 additions and 9 deletions

View File

@ -6,11 +6,11 @@
}:
stdenv.mkDerivation rec {
name = "R-3.1.2";
name = "R-3.1.3";
src = fetchurl {
url = "http://cran.r-project.org/src/base/R-3/${name}.tar.gz";
sha256 = "0ypsm11c7n49pgh2ricyhhpfhas3famscdazzdp2zq70rapm1ldw";
sha256 = "04kk6wd55bi0f0qsp98ckjxh95q2990vkgq4j83kiajvjciq7s87";
};
buildInputs = [ blas bzip2 gfortran liblapack libX11 libXmu libXt
@ -54,8 +54,7 @@ stdenv.mkDerivation rec {
installTargets = [ "install" "install-info" "install-pdf" ];
# The test suite fails when building without the recommended packages.
doCheck = withRecommendedPackages;
doCheck = true;
enableParallelBuilding = true;

View File

@ -7925,14 +7925,14 @@ let
R = callPackage ../applications/science/math/R {
inherit (xlibs) libX11 libXt;
texLive = texLiveAggregationFun { paths = [ texLive texLiveExtra ]; };
withRecommendedPackages = true;
withRecommendedPackages = false;
};
rWrapper = callPackage ../development/r-modules/wrapper.nix {
# Those packages are usually installed as part of the R build.
recommendedPackages = with rPackages; [ boot class cluster codetools
foreign KernSmooth lattice MASS Matrix mgcv nlme nnet rpart
spatial survival ];
recommendedPackages = with rPackages; [
boot class cluster codetools foreign KernSmooth lattice MASS
Matrix mgcv nlme nnet rpart spatial survival
];
# Override this attribute to register additional libraries.
packages = [];
};