From 7a93926a91ea52dc7d6590dd7955097379ee263a Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 23 Jun 2016 14:31:53 +0200 Subject: [PATCH] zstd: 0.7.0 -> 0.7.1 Fixes: - ZBUFF_compressEnd() called multiple times with too small dst buffer - dictBuilder fails if first sample is too small - corruption issue - cli breaks during destination file overwrite confirmation Changes: - frame checksum enabled by default in command line mode --- pkgs/tools/compression/zstd/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/compression/zstd/default.nix b/pkgs/tools/compression/zstd/default.nix index 34f0d870e1fa..04a1f2239c2d 100644 --- a/pkgs/tools/compression/zstd/default.nix +++ b/pkgs/tools/compression/zstd/default.nix @@ -3,10 +3,10 @@ stdenv.mkDerivation rec { name = "zstd-${version}"; - version = "0.7.0"; + version = "0.7.1"; src = fetchFromGitHub { - sha256 = "10n54lv33r90qbwvdvj4hx82g454pg1fhca3phkyh9mncbdvaqma"; + sha256 = "0h922kw6q0nsbigv86k7xqpfh4rj7rjxp60pgjmp5vlb2bma03sm"; rev = "v${version}"; repo = "zstd"; owner = "Cyan4973";