mysql-shell-innovation: 9.4.0 -> 9.6.0

This commit is contained in:
Aaron Jheng
2026-01-24 10:12:01 +08:00
parent a8e00acda7
commit bdd88971af
2 changed files with 11 additions and 5 deletions
@@ -38,8 +38,8 @@ let
pyyaml
];
mysqlShellVersion = "9.4.0";
mysqlServerVersion = "9.4.0";
mysqlShellVersion = "9.6.0";
mysqlServerVersion = "9.6.0";
in
stdenv.mkDerivation (finalAttrs: {
pname = "mysql-shell-innovation";
@@ -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-a7UJxU5YtUq776SeKW5yIPXnz+RGkUujYV9ZSWfPqSE=";
hash = "sha256-JABh2GnVrhiMmjM4RZKImenZY8y9Z4Zaii5Lb8tnF4w=";
})
(fetchurl {
url = "https://dev.mysql.com/get/Downloads/MySQL-Shell/mysql-shell-${finalAttrs.version}-src.tar.gz";
hash = "sha256-BpiDGA3Lxf/MrKqtPSA+apFNZx9N805PYYVa+2vQxPE=";
hash = "sha256-WnCr/poMsxtaS9k7/6QZDkFPOZlf7WAELsqFGpnUwf4=";
})
];
+7 -1
View File
@@ -521,7 +521,13 @@ with pkgs;
protobuf = protobuf_25.override {
abseil-cpp = abseil-cpp_202407;
};
stdenv = if stdenv.cc.isClang then llvmPackages_19.stdenv else stdenv;
stdenv =
if stdenv.cc.isClang then
llvmPackages_19.stdenv
else if stdenv.cc.isGNU then
gcc14Stdenv
else
stdenv;
};
# this is used by most `fetch*` functions