mysql80: 8.0.31 -> 8.0.32

Fixes the following security issues:
* CVE-2023-21836
* CVE-2023-21863
* CVE-2023-21867
* CVE-2023-21868
* CVE-2023-21869
* CVE-2023-21870
* CVE-2023-21871
* CVE-2023-21873
* CVE-2023-21875
* CVE-2023-21876
* CVE-2023-21877
* CVE-2023-21878
* CVE-2023-21879
* CVE-2023-21880
* CVE-2023-21881
* CVE-2023-21882
* CVE-2023-21883
* CVE-2023-21887

Changelog:
https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-32.html
This commit is contained in:
Thomas Gerbet 2023-01-25 19:40:49 +01:00
parent 79a606608e
commit 42d6fe1a13

View file

@ -6,11 +6,11 @@
let
self = stdenv.mkDerivation rec {
pname = "mysql";
version = "8.0.31";
version = "8.0.32";
src = fetchurl {
url = "https://dev.mysql.com/get/Downloads/MySQL-${self.mysqlVersion}/${pname}-${version}.tar.gz";
sha256 = "sha256-Z7uMunWyjpXH95SFY/AfuEUo/LsaNduoOdTORP4Bm6o=";
sha256 = "sha256-Hw2SojeJgkRxbdWB95k1bgc8LaY8Oy5KAeEDLL7VDig=";
};
nativeBuildInputs = [ bison cmake pkg-config ]