Merge #125185: zstd: patch test flakiness on i686

wip/little-gl
Vladimír Čunát 3 years ago
commit 9660a9f481
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA
  1. 10
      pkgs/tools/compression/zstd/default.nix

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, cmake, bash, gnugrep
{ lib, stdenv, fetchFromGitHub, fetchpatch, cmake, bash, gnugrep
, fixDarwinDylibNames
, file
, legacySupport ? false
@ -24,7 +24,13 @@ stdenv.mkDerivation rec {
# This patches makes sure we do not attempt to use the MD5 implementation
# of the host platform when running the tests
./playtests-darwin.patch
];
] ++ lib.optional stdenv.is32bit
(fetchpatch { # https://github.com/facebook/zstd/pull/2606
name = "test-memory-usage.diff";
url = "https://github.com/facebook/zstd/commit/6f40571a.diff";
sha256 = "1484k5b99wplv9vjvvxjn88l13hlay6bynhq3zh1nd34whyi1kd0";
});
postPatch = lib.optionalString (!static) ''
substituteInPlace build/cmake/CMakeLists.txt \

Loading…
Cancel
Save