mysql-shell: 8.4.1 -> 8.4.3

This commit is contained in:
Aaron Jheng
2024-10-17 02:18:09 +00:00
parent e3543c8367
commit c7a381c92a
+4 -4
View File
@@ -34,8 +34,8 @@
let
pythonDeps = with python3.pkgs; [ certifi paramiko pyyaml ];
mysqlShellVersion = "8.4.1";
mysqlServerVersion = "8.4.1";
mysqlShellVersion = "8.4.3";
mysqlServerVersion = "8.4.3";
in
stdenv.mkDerivation (finalAttrs: {
pname = "mysql-shell";
@@ -44,11 +44,11 @@ stdenv.mkDerivation (finalAttrs: {
srcs = [
(fetchurl {
url = "https://dev.mysql.com/get/Downloads/MySQL-${lib.versions.majorMinor mysqlServerVersion}/mysql-${mysqlServerVersion}.tar.gz";
hash = "sha256-20Hxl9cXDFTX7cDQyaJzDCJfSvBeztD2S+z5u2wRAT4=";
hash = "sha256-eslWTEeAIvcwBf+Ju7QPZ7OB/AbVUYQWvf/sdeYluBg=";
})
(fetchurl {
url = "https://dev.mysql.com/get/Downloads/MySQL-Shell/mysql-shell-${finalAttrs.version}-src.tar.gz";
hash = "sha256-wTwoaoaCrTQqaqgE35Sg8zn8HqjsjQowbtgMZTpkYQU=";
hash = "sha256-rO+cAfQzUobMrTLGHRbaXsG+vMcjVTtDoZwmyok+dS4=";
})
];