From cbc1a03ab80a4360d6dcb8458ffa43fabf76c4ec Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 2 Jul 2018 11:21:39 +0200 Subject: [PATCH] R: update to version 3.5.1 (cherry picked from commit 7e2f2037ea6d6533492d407696f260e7b11df49d) --- pkgs/applications/science/math/R/default.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/science/math/R/default.nix b/pkgs/applications/science/math/R/default.nix index f20b75605d5..25ebee96a10 100644 --- a/pkgs/applications/science/math/R/default.nix +++ b/pkgs/applications/science/math/R/default.nix @@ -7,11 +7,11 @@ }: stdenv.mkDerivation rec { - name = "R-3.5.0"; + name = "R-3.5.1"; src = fetchurl { url = "https://cran.r-project.org/src/base/R-3/${name}.tar.gz"; - sha256 = "0w38865laqg28cdhikxdxhx4rfp0kgcn72gakwypsy91br9ja5zx"; + sha256 = "0463bff5eea0f3d93fa071f79c18d0993878fd4f2e18ae6cf22c1639d11457ed"; }; buildInputs = [ @@ -65,8 +65,7 @@ stdenv.mkDerivation rec { installTargets = [ "install" "install-info" "install-pdf" ]; - doCheck = withRecommendedPackages; # R 3.5.0 fails the test suite if the - # recommended packages are not built + doCheck = true; preCheck = "export TZ=CET; bin/Rscript -e 'sessionInfo()'"; enableParallelBuilding = true;