flint: 3.2.1 -> 3.3.1 (#416789)

authored by Mauricio Collares and committed by GitHub e3ca087d d6a132ff

+15 -2
+13
pkgs/by-name/si/singular/package.nix
··· 1 1 { 2 2 stdenv, 3 3 fetchFromGitHub, 4 + fetchpatch, 4 5 gmp, 5 6 bison, 6 7 perl, ··· 69 70 70 71 patchShebangs . 71 72 ''; 73 + 74 + # Use fq_nmod_mat_entry instead of row pointer (removed in flint 3.3.0) 75 + patches = [ 76 + (fetchpatch { 77 + url = "https://github.com/Singular/Singular/commit/05f5116e13c8a4f5f820c78c35944dd6d197d442.patch"; 78 + hash = "sha256-4l7JaCCFzE+xINU+E92eBN5CJKIdtQHly4Ed3ZwbKTA="; 79 + }) 80 + (fetchpatch { 81 + url = "https://github.com/Singular/Singular/commit/595d7167e6e019d45d9a4f1e18ae741df1f3c41d.patch"; 82 + hash = "sha256-hpTZy/eAiHAaleasWPAenxM35aqeNAZ//o6OqqdGOJ4="; 83 + }) 84 + ]; 72 85 73 86 # For reference (last checked on commit 75f460d): 74 87 # https://github.com/Singular/Singular/blob/spielwiese/doc/Building-Singular-from-source.md
+2 -2
pkgs/development/libraries/flint/3.nix
··· 22 22 23 23 stdenv.mkDerivation rec { 24 24 pname = "flint3"; 25 - version = "3.2.1"; 25 + version = "3.3.1"; 26 26 27 27 src = fetchurl { 28 28 url = "https://flintlib.org/download/flint-${version}.tar.gz"; 29 - hash = "sha256-ynvkbXeXInfrb+DE92dUhDL1a7U0qhfW26LXzOFc0j8="; 29 + hash = "sha256-ZNcOUTB2z6lx4EELWMHaXTURKRPppWtE4saBtFnT6vs="; 30 30 }; 31 31 32 32 nativeBuildInputs = [