gnu: zstd: Don't use unstable tarball.
* gnu/packages/compression.scm (zstd)[source]: Use release archive.
This commit is contained in:
parent
317e80cead
commit
3880537c74
|
@ -1695,14 +1695,13 @@ or junctions, and always follows hard links.")
|
||||||
(package
|
(package
|
||||||
(name "zstd")
|
(name "zstd")
|
||||||
(version "1.3.6")
|
(version "1.3.6")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append "https://github.com/facebook/zstd/archive/v"
|
(method url-fetch)
|
||||||
version ".tar.gz"))
|
(uri (string-append "https://github.com/facebook/zstd/releases/download/"
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
"v" version "/zstd-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "1525b31jmbiczjj1n58nckdzky4cdnbwcsil3zgy4cx03v0a0cp8"))))
|
||||||
"1iwxcpxg51yskiwfw5nhsflvcm3pk4184kkfpm61hsxniwa1cmbz"))))
|
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
|
|
Loading…
Reference in New Issue