mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: google-brotli: Don't use unstable tarball.
* gnu/packages/compression.scm (google-brotli)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
7f5a010b9a
commit
fc82c1752e
1 changed files with 9 additions and 7 deletions
|
@ -1759,13 +1759,15 @@ (define-public google-brotli
|
||||||
(package
|
(package
|
||||||
(name "google-brotli")
|
(name "google-brotli")
|
||||||
(version "1.0.4")
|
(version "1.0.4")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append "https://github.com/google/brotli/archive/v"
|
(method git-fetch)
|
||||||
version ".tar.gz"))
|
(uri (git-reference
|
||||||
(sha256
|
(url "https://github.com/google/brotli.git")
|
||||||
(base32
|
(commit (string-append "v" version))))
|
||||||
"1hrpmz162k4x3xm6vmbpm443jlfr1kp536p8962y2dncy7gs6s12"))))
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0n5snycxgwqj2v8sgxiqxq4zqh5ydx70dr7qa4ygizs02ms69n1i"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
|
|
Loading…
Reference in a new issue