about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorMauricio Collares <mauricio@collares.org>2023-08-23 13:13:44 +0200
committerGitHub <noreply@github.com>2023-08-23 13:13:44 +0200
commit0ce130a11bc4bd3505daededc6c839355884f34e (patch)
tree80418a97509c63b5e77834d1cd6e96a0b4e31af5 /pkgs/applications
parent799e2353c404c0d8d5fc35984a8cc29b692fe4fa (diff)
parent71e74a395bd2c91f06b038c68dbd3b22fa54cdc2 (diff)
Merge pull request #250947 from collares/sage-gmp
sage: import test fixes for gmp update
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/science/math/sage/sage-src.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/applications/science/math/sage/sage-src.nix b/pkgs/applications/science/math/sage/sage-src.nix
index dee6e8eb0d4b2..9fe07603fe7d2 100644
--- a/pkgs/applications/science/math/sage/sage-src.nix
+++ b/pkgs/applications/science/math/sage/sage-src.nix
@@ -103,6 +103,13 @@ stdenv.mkDerivation rec {
       url = "https://github.com/sagemath/sage/commit/1a1b49f814cdf4c4c8d0ac8930610f3fef6af5b0.diff";
       sha256 = "sha256-GqMgoi0tsP7zcCcPumhdsbvhPB6fgw1ufx6gHlc6iSc=";
     })
+
+    # https://github.com/sagemath/sage/pull/36006, positively reviewed
+    (fetchpatch {
+      name = "gmp-6.3-upgrade.patch";
+      url = "https://github.com/sagemath/sage/commit/d88bc3815c0901bfdeaa3e4a31107c084199f614.diff";
+      sha256 = "sha256-dXaEwk2wXxmx02sCw4Vu9mF0ZrydhFD4LRwNAiQsPgM=";
+    })
   ];
 
   patches = nixPatches ++ bugfixPatches ++ packageUpgradePatches;