lol

Merge pull request #129661 from peperunas/master

mysql: 8.0.22 -> 8.0.25

authored by

Ben Siraphob and committed by
GitHub
3191d4f0 3bca92a4

+5 -5
+4 -4
pkgs/servers/sql/mysql/8.0.x.nix
··· 1 1 { lib, stdenv, fetchurl, bison, cmake, pkg-config 2 2 , boost, icu, libedit, libevent, lz4, ncurses, openssl, protobuf, re2, readline, zlib, zstd 3 - , numactl, perl, cctools, CoreServices, developer_cmds, libtirpc, rpcsvc-proto 3 + , numactl, perl, cctools, CoreServices, developer_cmds, libtirpc, rpcsvc-proto, curl 4 4 }: 5 5 6 6 let 7 7 self = stdenv.mkDerivation rec { 8 8 pname = "mysql"; 9 - version = "8.0.22"; 9 + version = "8.0.25"; 10 10 11 11 src = fetchurl { 12 12 url = "https://dev.mysql.com/get/Downloads/MySQL-${self.mysqlVersion}/${pname}-${version}.tar.gz"; 13 - sha256 = "9fd85bb243940ef8234d21384ef421a0962fd4d13406fc1420efa902115ce17a"; 13 + sha256 = "c16aa9cf621bc028efba2bb11f3c36a323b125fa0d108ff92fab60e46309206e"; 14 14 }; 15 15 16 16 patches = [ ··· 27 27 ''; 28 28 29 29 buildInputs = [ 30 - boost icu libedit libevent lz4 ncurses openssl protobuf re2 readline zlib 30 + boost curl icu libedit libevent lz4 ncurses openssl protobuf re2 readline zlib 31 31 zstd 32 32 ] ++ lib.optionals stdenv.isLinux [ 33 33 numactl libtirpc
+1 -1
pkgs/top-level/all-packages.nix
··· 19851 19851 inherit (darwin) cctools developer_cmds; 19852 19852 inherit (darwin.apple_sdk.frameworks) CoreServices; 19853 19853 boost = boost173; # Configure checks for specific version. 19854 - protobuf = protobuf3_7; 19854 + protobuf = protobuf3_11; 19855 19855 icu = icu67; 19856 19856 }; 19857 19857