From 60c97c60a53686ec321eb541b85e01b6decc2014 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Wed, 5 Apr 2023 15:24:37 -0400 Subject: [PATCH] gnu: Zstandard: Update to 1.5.5. This fixes a corruption bug: https://github.com/facebook/zstd/releases/tag/v1.5.5 * gnu/packages/compression.scm (zstd)[replacement, properties]: New fields. (zstd-1.5.5): New variable. --- gnu/packages/compression.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm index e58fd65e49..e9d7338bb4 100644 --- a/gnu/packages/compression.scm +++ b/gnu/packages/compression.scm @@ -1635,6 +1635,13 @@ (define-public unshield (define-public zstd (package (name "zstd") + ;; Replace to avoid the data corruption bug fixed in Zstd 1.5.5. + ;; https://github.com/facebook/zstd/releases/tag/v1.5.5 + (replacement zstd-1.5.5) + ;; Hide this buggy package in the Guix UI. If you add another + ;; property to this package, adjust the properties in the package + ;; replacement accordingly. + (properties `((hidden? . #true))) (version "1.5.0") (source (origin @@ -1721,6 +1728,20 @@ (define-public zstd license:public-domain ; zlibWrapper/examples/fitblk* license:zlib)))) ; zlibWrapper/{gz*.c,gzguts.h} +(define-public zstd-1.5.5 + (package + (inherit zstd) + ;; Don't hide this package from the UI. + (properties '()) + (version "1.5.5") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/facebook/zstd/releases/download/" + "v" version "/zstd-" version ".tar.gz")) + (sha256 + (base32 "1r1ydmj7ib3g5372yj3k40vl3b9ax0154qg2lqcy7ylwhb69chww")))))) + (define-public pzstd (package/inherit zstd (name "pzstd")