Unverified Commit e7eec4ec authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

redis: 8.0.3 -> 8.2.2 (#448600)

parents 52b40eb6 29d5e4b3
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -26,13 +26,13 @@

stdenv.mkDerivation (finalAttrs: {
  pname = "redis";
  version = "8.0.3";
  version = "8.2.2";

  src = fetchFromGitHub {
    owner = "redis";
    repo = "redis";
    tag = finalAttrs.version;
    hash = "sha256-e6pPsPz0huZyn14XO3uFUmJhBpMxhWLfyD0VBQXsJ1s=";
    hash = "sha256-0TMUSNCrDEtOkojcmFFhmLQ0ghyLAn+OS4xl4Sbr76c=";
  };

  patches = lib.optional useSystemJemalloc (fetchpatch2 {
@@ -106,7 +106,9 @@ stdenv.mkDerivation (finalAttrs: {
      --tags -leaks \
      --skipunit integration/aof-multi-part \
      --skipunit integration/failover \
      --skipunit integration/replication-rdbchannel
      --skipunit integration/replication-rdbchannel \
      --skiptest "Check MEMORY USAGE for embedded key strings with jemalloc"
      # ^ breaks due to unexpected and varying address space sizes that jemalloc gets built with

    runHook postCheck
  '';