summary refs log tree commit diff
path: root/pkgs/applications/science/math/R/default.nix
diff options
context:
space:
mode:
authorJustin Bedo <cu@cua0.org>2023-06-26 16:47:23 +1000
committerJustin Bedo <cu@cua0.org>2023-06-26 16:47:23 +1000
commitbd8f4a24e139892d1c8cc5c0e7a88e28d9d5d4f4 (patch)
tree323ca3f41e9cb6921b7d9da4aadb6932306752f1 /pkgs/applications/science/math/R/default.nix
parentcac7725d3c2c1d0930daf7d30019512c2421abe1 (diff)
downloadnixpkgs-bd8f4a24e139892d1c8cc5c0e7a88e28d9d5d4f4.tar
nixpkgs-bd8f4a24e139892d1c8cc5c0e7a88e28d9d5d4f4.tar.gz
nixpkgs-bd8f4a24e139892d1c8cc5c0e7a88e28d9d5d4f4.tar.bz2
nixpkgs-bd8f4a24e139892d1c8cc5c0e7a88e28d9d5d4f4.tar.lz
nixpkgs-bd8f4a24e139892d1c8cc5c0e7a88e28d9d5d4f4.tar.xz
nixpkgs-bd8f4a24e139892d1c8cc5c0e7a88e28d9d5d4f4.tar.zst
nixpkgs-bd8f4a24e139892d1c8cc5c0e7a88e28d9d5d4f4.zip
R: 4.3.0 -> 4.3.1
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 98a3b192f64..9ff9d693a88 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;