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