mysql-shell_8: 8.4.3 -> 8.4.4

This commit is contained in:
Aaron Jheng
2025-01-23 12:13:08 +00:00
parent 0aa475546e
commit cf6620ee65
2 changed files with 5 additions and 4 deletions

View File

@@ -38,8 +38,8 @@ let
pyyaml
];
mysqlShellVersion = "8.4.3";
mysqlServerVersion = "8.4.3";
mysqlShellVersion = "8.4.4";
mysqlServerVersion = "8.4.4";
in
stdenv.mkDerivation (finalAttrs: {
pname = "mysql-shell";
@@ -48,11 +48,11 @@ stdenv.mkDerivation (finalAttrs: {
srcs = [
(fetchurl {
url = "https://dev.mysql.com/get/Downloads/MySQL-${lib.versions.majorMinor mysqlServerVersion}/mysql-${mysqlServerVersion}.tar.gz";
hash = "sha256-eslWTEeAIvcwBf+Ju7QPZ7OB/AbVUYQWvf/sdeYluBg=";
hash = "sha256-+ykO90iJRDQIUknDG8pSrHGFMSREarIYuzvFAr8AgqU=";
})
(fetchurl {
url = "https://dev.mysql.com/get/Downloads/MySQL-Shell/mysql-shell-${finalAttrs.version}-src.tar.gz";
hash = "sha256-rO+cAfQzUobMrTLGHRbaXsG+vMcjVTtDoZwmyok+dS4=";
hash = "sha256-wl57vU3YbWvtmzew801k8WHohY6Fjy59Uyy2pdYaHuw=";
})
];

View File

@@ -506,6 +506,7 @@ with pkgs;
antlr = antlr4_10;
icu = icu73;
protobuf = protobuf_24;
stdenv = if stdenv.hostPlatform.isDarwin then llvmPackages_18.stdenv else stdenv;
};
})
mysql-shell_8