Merge pull request #115625 from LeSuisse/zstd-1.4.9

zstd: 1.4.8 -> 1.4.9
This commit is contained in:
Martin Weinelt
2021-03-20 02:01:29 +01:00
committed by GitHub
2 changed files with 18 additions and 6 deletions
+4 -2
View File
@@ -7,13 +7,13 @@
stdenv.mkDerivation rec {
pname = "zstd";
version = "1.4.8";
version = "1.4.9";
src = fetchFromGitHub {
owner = "facebook";
repo = "zstd";
rev = "v${version}";
sha256 = "018zgigp5xlrb4mgshgrvns0cfbhhcg89cifbjj4rv6s3n9riphw";
sha256 = "18alxnym54gswsmsr5ra82q4k1q5fyzsyx0jykb2sk2nkpvx7334";
};
nativeBuildInputs = [ cmake ]
@@ -21,6 +21,8 @@ stdenv.mkDerivation rec {
buildInputs = lib.optional stdenv.hostPlatform.isUnix bash;
patches = [
# This patches makes sure we do not attempt to use the MD5 implementation
# of the host platform when running the tests
./playtests-darwin.patch
];