gnu: hypre: Don't use unstable tarball.
* gnu/packages/maths.scm (hypre)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
90cea67111
commit
fabcbf3261
|
@ -3680,14 +3680,15 @@ set.")
|
||||||
(package
|
(package
|
||||||
(name "hypre")
|
(name "hypre")
|
||||||
(version "2.14.0")
|
(version "2.14.0")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append "https://github.com/LLNL/hypre/archive/"
|
(method git-fetch)
|
||||||
"v" version ".tar.gz"))
|
(uri (git-reference
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(url "https://github.com/LLNL/hypre.git")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "12iciad718rf7vcl33klza7dcnxxa5581yav7c72l81m7mswihq9"))
|
||||||
"0v515i73bvaz378h5465b1dy9v2gf924zy2q94cpq4qqarawvkqh"))
|
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
'(begin
|
'(begin
|
||||||
|
|
Loading…
Reference in New Issue