[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: zstd: Don't use unstable tarball.
From: |
Tobias Geerinckx-Rice |
Subject: |
01/01: gnu: zstd: Don't use unstable tarball. |
Date: |
Mon, 8 Oct 2018 23:52:16 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit 3880537c7403c3677ec46e991da9d25ca542c64b
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Tue Oct 9 05:46:00 2018 +0200
gnu: zstd: Don't use unstable tarball.
* gnu/packages/compression.scm (zstd)[source]: Use release archive.
---
gnu/packages/compression.scm | 15 +++++++--------
1 file changed, 7 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
index 38d72f1..8c940f3 100644
--- a/gnu/packages/compression.scm
+++ b/gnu/packages/compression.scm
@@ -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