gnu: zstd: Don't use unstable tarball.

* gnu/packages/compression.scm (zstd)[source]: Use release archive.
master
Tobias Geerinckx-Rice 2018-10-09 05:46:00 +02:00
parent 317e80cead
commit 3880537c74
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 7 additions and 8 deletions

View File

@ -1695,14 +1695,13 @@ or junctions, and always follows hard links.")
(package
(name "zstd")
(version "1.3.6")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/facebook/zstd/archive/v"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1iwxcpxg51yskiwfw5nhsflvcm3pk4184kkfpm61hsxniwa1cmbz"))))
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/facebook/zstd/releases/download/"
"v" version "/zstd-" version ".tar.gz"))
(sha256
(base32 "1525b31jmbiczjj1n58nckdzky4cdnbwcsil3zgy4cx03v0a0cp8"))))
(build-system gnu-build-system)
(arguments
`(#:phases