mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-22 10:16:45 +01:00
gnu: gumbo-parser: Don't use unstable tarball.
* gnu/packages/web.scm (gumbo-parser)[source]: Download using git-fetch.
This commit is contained in:
parent
1a66502296
commit
ed1bbc16cc
1 changed files with 6 additions and 5 deletions
|
@ -4285,13 +4285,14 @@ (define-public gumbo-parser
|
||||||
(name "gumbo-parser")
|
(name "gumbo-parser")
|
||||||
(version "0.10.1")
|
(version "0.10.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/google/"
|
(uri (git-reference
|
||||||
"gumbo-parser/archive/v" version ".tar.gz"))
|
(url "https://github.com/google/gumbo-parser")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1bgg2kbj311pqdzw2v33za7k66g1rv44kkvvnz2gnpaasi9k0ii8"))))
|
"0xslckwdh2i0g2qjsb6rnm8mjmbagvziz0hjlf7d1lbljfms1iw1"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f)) ;tests require bundling googletest sources
|
`(#:tests? #f)) ;tests require bundling googletest sources
|
||||||
|
|
Loading…
Reference in a new issue