about summary refs log tree commit diff
path: root/pkgs/applications/science/math
diff options
context:
space:
mode:
authorJustin Bedő <cu@cua0.org>2023-06-29 13:14:20 +1000
committerGitHub <noreply@github.com>2023-06-29 13:14:20 +1000
commit296758401d5f02dc244e1d95038ebe2d8d8a1c52 (patch)
tree15f0700c70fd42411c0378b3f29f508e3c0c5336 /pkgs/applications/science/math
parent2c8591ad6a6f9d679817a94f847c59b0d1e3289e (diff)
parentbc592fb8434a1ff9462ef3126905dbe600e8d031 (diff)
Merge pull request #239891 from NixOS/r-updates
R updates
Diffstat (limited to 'pkgs/applications/science/math')
-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 98a3b192f6452..9ff9d693a885d 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.3.0";
+  version = "4.3.1";
 
   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-RdzEi2zyfTYQIPd/3ho5IJ6Ze4FAKzZjyhwBAFampgk=";
+    sha256 = "sha256-jdC/JPECPG9hjDsxc4PSkbSklPQNc7mDrCL/6pnkupk=";
   };
 
   dontUseImakeConfigure = true;