about summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2021-05-23 19:54:59 -0500
committerGitHub <noreply@github.com>2021-05-23 19:54:59 -0500
commitfc6084c0aff25446f925e6587ec193aae2d01ee9 (patch)
tree44c0e1847e36ec9a0040d13efb2f450956b89932 /pkgs/servers
parentdb9dd99b6c11c0017e8de6859f44ce5a867161ce (diff)
parent0d1b14161acc0c79b0712ea4f4c476684bfa41a3 (diff)
Merge pull request #124127 from LeSuisse/redis-6.2.3
redis: 6.2.1 -> 6.2.3
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/nosql/redis/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/servers/nosql/redis/default.nix b/pkgs/servers/nosql/redis/default.nix
index 48dcbb8f81382..5856d0d17b53d 100644
--- a/pkgs/servers/nosql/redis/default.nix
+++ b/pkgs/servers/nosql/redis/default.nix
@@ -5,20 +5,22 @@
 
 stdenv.mkDerivation rec {
   pname = "redis";
-  version = "6.2.1";
+  version = "6.2.3";
 
   src = fetchurl {
     url = "https://download.redis.io/releases/${pname}-${version}.tar.gz";
-    sha256 = "sha256-zSIlBQEsziCyVoL8qTHsk70hrpLLSr/nQs97dqqQdSA=";
+    sha256 = "sha256-mO19UytelnH13wglu3Hw83SDoWVGNkBJOExj24dkUSs=";
   };
 
   # Cross-compiling fixes
   configurePhase = ''
+    runHook preConfigure
     ${lib.optionalString (stdenv.buildPlatform != stdenv.hostPlatform) ''
       # This fixes hiredis, which has the AR awkwardly coded.
       # Probably a good candidate for a patch upstream.
       makeFlagsArray+=('STLIB_MAKE_CMD=${stdenv.cc.targetPrefix}ar rcs $(STLIBNAME)')
     ''}
+    runHook postConfigure
   '';
 
   nativeBuildInputs = [ pkg-config ];