From 98ff369a99fd84ae255e9c3f480890f9f0ac3c50 Mon Sep 17 00:00:00 2001 From: Mauricio Collares Date: Mon, 27 Oct 2025 18:06:09 -0300 Subject: [PATCH] sage: import GAP update patch --- pkgs/by-name/sa/sage/sage-src.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/by-name/sa/sage/sage-src.nix b/pkgs/by-name/sa/sage/sage-src.nix index 706e178e6300..89f8e4c25ab2 100644 --- a/pkgs/by-name/sa/sage/sage-src.nix +++ b/pkgs/by-name/sa/sage/sage-src.nix @@ -75,6 +75,13 @@ stdenv.mkDerivation rec { # should come from or be proposed to upstream. This list will probably never # be empty since dependencies update all the time. packageUpgradePatches = [ + # https://github.com/sagemath/sage/pull/40919, landed in 10.8.beta8 + (fetchpatch2 { + name = "gap-4.15.1-update.patch"; + url = "https://github.com/sagemath/sage/commit/54d4ddb132cc71ef26b4db1f48afd6736d41cc63.patch?full_index=1"; + hash = "sha256-PZyOXRsgcsPvgceGGZXet5URJgWiIlCfFx8tvwpLk5A="; + excludes = [ "src/doc/zh/constructions/rep_theory.rst" ]; + }) ]; patches = nixPatches ++ bugfixPatches ++ packageUpgradePatches;