diff options
author | Ludovic Courtès <ludovic.courtes@inria.fr> | 2022-08-05 14:55:52 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-08-05 15:28:05 +0200 |
commit | 12087b1b19e6d6e746304447669dfe5b66090012 (patch) | |
tree | 372e7a9e190737c20fcefbbd37b523c672d04745 /gnu/packages/maths.scm | |
parent | b70d6ce6273a377963f706454640d88edbbd4208 (diff) |
gnu: mumps: Add alternate source code URL.
* gnu/packages/maths.scm (mumps)[source]: Add alternate URL.
Diffstat (limited to 'gnu/packages/maths.scm')
-rw-r--r-- | gnu/packages/maths.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 963fc8fa6a..c10794a089 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -3740,8 +3740,11 @@ language understood by many solvers.") (source (origin (method url-fetch) - (uri (string-append "http://mumps.enseeiht.fr/MUMPS_" - version ".tar.gz")) + (uri (list (string-append "http://mumps.enseeiht.fr/MUMPS_" + version ".tar.gz") + (string-append + "https://ftp.mcs.anl.gov/pub/petsc/externalpackages" + "/MUMPS_" version ".tar.gz"))) (sha256 (base32 "05gs2i8b76m9flm1826fxpyfnwibjjawbmfza3ylrvj7zaag5gqs")))) |