redis: 8.0.3 -> 8.2.2 (#448600)

This commit is contained in:
Martin Weinelt
2025-10-04 19:57:09 +00:00
committed by GitHub
+5 -3
View File
@@ -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
'';