about summary refs log tree commit diff
path: root/pkgs/applications/science/math/R/default.nix
diff options
context:
space:
mode:
authorJustin Bedő <cu@cua0.org>2023-03-26 21:40:30 +0000
committerGitHub <noreply@github.com>2023-03-26 21:40:30 +0000
commitc39e3d9b74b955dbc03a59701513b9239f6de9bf (patch)
tree8a8677027f957f69f204972faf51a1c1acd25689 /pkgs/applications/science/math/R/default.nix
parent64ccc2dccc16cbc7f8a955fe9812a72efbbdfecf (diff)
parentd8d5d73bac777eab35e05e1347818b91f314a9f0 (diff)
Merge pull request #221546 from NixOS/r-updates
R: 4.2.2 -> 4.2.3
Diffstat (limited to 'pkgs/applications/science/math/R/default.nix')
-rw-r--r--pkgs/applications/science/math/R/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/science/math/R/default.nix b/pkgs/applications/science/math/R/default.nix
index c1c23616fc259..429f9d767d70d 100644
--- a/pkgs/applications/science/math/R/default.nix
+++ b/pkgs/applications/science/math/R/default.nix
@@ -15,13 +15,13 @@ assert (!blas.isILP64) && (!lapack.isILP64);
 
 stdenv.mkDerivation (finalAttrs: {
   pname = "R";
-  version = "4.2.2";
+  version = "4.2.3";
 
   src = let
     inherit (finalAttrs) pname version;
   in fetchurl {
     url = "https://cran.r-project.org/src/base/R-${lib.versions.major version}/${pname}-${version}.tar.gz";
-    sha256 = "sha256-D/YrQuxRr6VxPK7nxP3noMRZQLo5vvjFyUh/7wyVPfU=";
+    sha256 = "sha256-VeSpptQ74xTiwD0CZqb6VESv3OULMDv8O4Kzl5UW4HQ=";
   };
 
   dontUseImakeConfigure = true;