gnu: gumbo-parser: Don't use unstable tarball.

* gnu/packages/web.scm (gumbo-parser)[source]: Download using git-fetch.
This commit is contained in:
Efraim Flashner 2019-12-24 18:18:57 +02:00
parent 1a66502296
commit ed1bbc16cc
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -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