summary refs log tree commit diff
path: root/pkgs/applications/science/math/R/default.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2018-07-02 11:21:39 +0200
committerPeter Simons <simons@cryp.to>2018-07-02 11:33:50 +0200
commitcbc1a03ab80a4360d6dcb8458ffa43fabf76c4ec (patch)
tree0ea3ec6139b86d813d1df907410d575bf5b7bb06 /pkgs/applications/science/math/R/default.nix
parent0b36a94ed49214cdcfd5798b0455d417fc5f5cd4 (diff)
downloadnixpkgs-cbc1a03ab80a4360d6dcb8458ffa43fabf76c4ec.tar
nixpkgs-cbc1a03ab80a4360d6dcb8458ffa43fabf76c4ec.tar.gz
nixpkgs-cbc1a03ab80a4360d6dcb8458ffa43fabf76c4ec.tar.bz2
nixpkgs-cbc1a03ab80a4360d6dcb8458ffa43fabf76c4ec.tar.lz
nixpkgs-cbc1a03ab80a4360d6dcb8458ffa43fabf76c4ec.tar.xz
nixpkgs-cbc1a03ab80a4360d6dcb8458ffa43fabf76c4ec.tar.zst
nixpkgs-cbc1a03ab80a4360d6dcb8458ffa43fabf76c4ec.zip
R: update to version 3.5.1
(cherry picked from commit 7e2f2037ea6d6533492d407696f260e7b11df49d)
Diffstat (limited to 'pkgs/applications/science/math/R/default.nix')
-rw-r--r--pkgs/applications/science/math/R/default.nix7
1 files 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;