Merge pull request #208609 from LeSuisse/redis-7.0.7

authored by Sandro and committed by GitHub b9866fc0 4f35cab9

+3 -12
+3 -12
pkgs/servers/nosql/redis/default.nix
··· 1 1 { lib, stdenv, fetchurl, lua, pkg-config, nixosTests 2 - , tcl, which, ps, getconf, fetchpatch 2 + , tcl, which, ps, getconf 3 3 , withSystemd ? stdenv.isLinux && !stdenv.hostPlatform.isStatic, systemd 4 4 # dependency ordering is broken at the moment when building with openssl 5 5 , tlsSupport ? !stdenv.hostPlatform.isStatic, openssl ··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "redis"; 10 - version = "7.0.5"; 10 + version = "7.0.7"; 11 11 12 12 src = fetchurl { 13 13 url = "https://download.redis.io/releases/${pname}-${version}.tar.gz"; 14 - hash = "sha256-ZwVMw3tYwSXfk714AAJh7A70Q2omtA84Jix4DlYxXMM="; 14 + hash = "sha256-jTJ9foh9G7MI/Deq9xegv3n1gSnjc5Bpqu6uiJVaxYY="; 15 15 }; 16 - 17 - patches = [ 18 - # https://nvd.nist.gov/vuln/detail/CVE-2022-3647 19 - (fetchpatch { 20 - name = "CVE-2022-3647.patch"; 21 - url = "https://github.com/redis/redis/commit/0bf90d944313919eb8e63d3588bf63a367f020a3.patch"; 22 - sha256 = "sha256-R5Tj/bHFTRnvWXiOYvRulqePzU5zvKbGfpO87TLfLWk="; 23 - }) 24 - ]; 25 16 26 17 nativeBuildInputs = [ pkg-config ]; 27 18