mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: muparser: Don't use unstable tarball.
* gnu/packages/maths.scm (muparser)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
f541d86de6
commit
67f1db3864
1 changed files with 6 additions and 6 deletions
|
@ -2950,13 +2950,13 @@ (define-public muparser
|
|||
(version (string-append upstream-version "-" revision))
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/beltoforion/muparser/archive/v"
|
||||
upstream-version ".tar.gz"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/beltoforion/muparser.git")
|
||||
(commit (string-append "v" upstream-version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0277qsi5l23jsck1vhn383bmvc2n9l4a1dl5r9bf7hvjv9ayyrh6"))))
|
||||
(base32 "0f0g4995xngf1pp3zr4p6ai2f8v6f8bxwa0k8ayjjiv1l8h44m24"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:configure-flags '("--enable-samples=no")
|
||||
|
|
Loading…
Reference in a new issue