summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-09-08 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2023-09-08 04:20:00 +0000
commita454cd9df728f9de48a155da8ec4695c5354ba07 (patch)
treeec4a8094bff96e341397190f667da357aa70b64c
parente009fad56f56b517f51768e2f3eec5c66d507d52 (diff)
downloadnixpkgs-a454cd9df728f9de48a155da8ec4695c5354ba07.tar
nixpkgs-a454cd9df728f9de48a155da8ec4695c5354ba07.tar.gz
nixpkgs-a454cd9df728f9de48a155da8ec4695c5354ba07.tar.bz2
nixpkgs-a454cd9df728f9de48a155da8ec4695c5354ba07.tar.lz
nixpkgs-a454cd9df728f9de48a155da8ec4695c5354ba07.tar.xz
nixpkgs-a454cd9df728f9de48a155da8ec4695c5354ba07.tar.zst
nixpkgs-a454cd9df728f9de48a155da8ec4695c5354ba07.zip
redis: 7.2.0 -> 7.2.1
Changelog: https://github.com/redis/redis/raw/7.2.1/00-RELEASENOTES
-rw-r--r--pkgs/servers/nosql/redis/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/nosql/redis/default.nix b/pkgs/servers/nosql/redis/default.nix
index dfbc2f70c18..201e87aab2e 100644
--- a/pkgs/servers/nosql/redis/default.nix
+++ b/pkgs/servers/nosql/redis/default.nix
@@ -12,11 +12,11 @@
 
 stdenv.mkDerivation rec {
   pname = "redis";
-  version = "7.2.0";
+  version = "7.2.1";
 
   src = fetchurl {
     url = "https://download.redis.io/releases/${pname}-${version}.tar.gz";
-    hash = "sha256-ixLiQmR2NbQZoOGDPtoCtlv2TjnrnlCdnbSIj7MSSUM=";
+    hash = "sha256-XHbZkKGxxflJvNHu2Q0Mik9wNpvb3LQCiMVh3fiJZ6Q=";
   };
 
   patches = lib.optionals useSystemJemalloc [