Merge pull request #264284 from aaronjheng/mysql-shell-innovation

mysql-shell-innovation: 8.1.1 -> 8.2.0

authored by Mario Rodas and committed by GitHub 2e6507ec 1122fb51

+6 -7
+5 -6
pkgs/development/tools/mysql-shell/innovation.nix
··· 5 5 , fetchurl 6 6 , git 7 7 , cctools 8 - , developer_cmds 9 8 , DarwinTools 10 9 , makeWrapper 11 10 , CoreServices ··· 36 35 let 37 36 pythonDeps = with python3.pkgs; [ certifi paramiko pyyaml ]; 38 37 39 - mysqlShellVersion = "8.1.1"; 40 - mysqlServerVersion = "8.1.0"; 38 + mysqlShellVersion = "8.2.0"; 39 + mysqlServerVersion = "8.2.0"; 41 40 in 42 41 stdenv.mkDerivation (finalAttrs: { 43 42 pname = "mysql-shell-innovation"; ··· 46 45 srcs = [ 47 46 (fetchurl { 48 47 url = "https://cdn.mysql.com//Downloads/MySQL-${lib.versions.majorMinor mysqlServerVersion}/mysql-${mysqlServerVersion}.tar.gz"; 49 - hash = "sha256-PdAXqUBzSqkHlqTGXhJeZxL2S7u+M4jTZGneqoe1mes="; 48 + hash = "sha256-itPj8cWuIVS+Y4rPVW6JgfcC0FKsxZV+d23xciwhGXk="; 50 49 }) 51 50 (fetchurl { 52 51 url = "https://cdn.mysql.com//Downloads/MySQL-Shell/mysql-shell-${finalAttrs.version}-src.tar.gz"; 53 - hash = "sha256-X7A2h9PWgQgNg7h64oD+Th/KsqP3UGpJ2etaP2B0VuY="; 52 + hash = "sha256-kuRo+3vcDtc9aOgAuxJTy0e6E85iOFfCx/ZHtrNg08k="; 54 53 }) 55 54 ]; 56 55 ··· 69 68 70 69 nativeBuildInputs = [ pkg-config cmake git bison makeWrapper ] 71 70 ++ lib.optionals (!stdenv.isDarwin) [ rpcsvc-proto ] 72 - ++ lib.optionals stdenv.isDarwin [ cctools developer_cmds DarwinTools ]; 71 + ++ lib.optionals stdenv.isDarwin [ cctools DarwinTools ]; 73 72 74 73 buildInputs = [ 75 74 boost
+1 -1
pkgs/top-level/all-packages.nix
··· 1093 1093 }; 1094 1094 1095 1095 mysql-shell-innovation = callPackage ../development/tools/mysql-shell/innovation.nix { 1096 - inherit (darwin) cctools developer_cmds DarwinTools; 1096 + inherit (darwin) cctools DarwinTools; 1097 1097 inherit (darwin.apple_sdk.frameworks) CoreServices; 1098 1098 antlr = antlr4_10; 1099 1099 boost = boost177; # Configure checks for specific version.