about summary refs log tree commit diff
path: root/pkgs/by-name/va
diff options
context:
space:
mode:
authorArtturin2024-11-13 07:03:55 +0200
committerGitHub2024-11-13 07:03:55 +0200
commit1641c8d30380e2507a5ccff8f4a4800311bdfe5a (patch)
tree5112b5f21b46eb28fb480af1e2272a36fd9b7e89 /pkgs/by-name/va
parent539826a5bfc94da66f107524a648ebbe276db2fe (diff)
parent7108a1dec0fda9f46b7c61fe42f740cdb7e5d3b6 (diff)
valkey: 7.2.7 -> 8.0.1 (#347906)
Diffstat (limited to 'pkgs/by-name/va')
-rw-r--r--pkgs/by-name/va/valkey/package.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/by-name/va/valkey/package.nix b/pkgs/by-name/va/valkey/package.nix
index 6a8fd54173d2..6f1f74cea49b 100644
--- a/pkgs/by-name/va/valkey/package.nix
+++ b/pkgs/by-name/va/valkey/package.nix
@@ -12,13 +12,13 @@
 
 stdenv.mkDerivation (finalAttrs: {
   pname = "valkey";
-  version = "7.2.7";
+  version = "8.0.1";
 
   src = fetchFromGitHub {
     owner = "valkey-io";
     repo = "valkey";
     rev = finalAttrs.version;
-    hash = "sha256-2kbhUg+rNuIUF/Bna6jFLI6Vhg9TlSi+OZEy6jKl2X0=";
+    hash = "sha256-WB0blQLxQOTkK8UGsH6WISZAisUAtGIDfjoc4RnPSew=";
   };
 
   patches = lib.optional useSystemJemalloc ./use_system_jemalloc.patch;
@@ -30,6 +30,8 @@ stdenv.mkDerivation (finalAttrs: {
     ++ lib.optional withSystemd systemd
     ++ lib.optional tlsSupport openssl;
 
+  strictDeps = true;
+
   preBuild = lib.optionalString stdenv.hostPlatform.isDarwin ''
     substituteInPlace src/Makefile --replace-fail "-flto" ""
   '';
@@ -55,7 +57,7 @@ stdenv.mkDerivation (finalAttrs: {
     # disable test "Connect multiple replicas at the same time": even
     # upstream find this test too timing-sensitive
     substituteInPlace tests/integration/replication.tcl \
-      --replace-fail 'foreach mdl {no yes}' 'foreach mdl {}'
+      --replace-fail 'foreach mdl {no yes} dualchannel {no yes}' 'foreach mdl {} dualchannel {}'
 
     substituteInPlace tests/support/server.tcl \
       --replace-fail 'exec /usr/bin/env' 'exec env'