Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

mysql57: 5.7.25 -> 5.7.27

(cherry picked from commit 88770b01d5399c987e539896f28b38609d93e8f6)

+7 -9
+7 -9
pkgs/servers/sql/mysql/5.7.x.nix
··· 1 - { stdenv, fetchurl, cmake, bison 1 + { stdenv, fetchurl, cmake, bison, pkgconfig 2 2 , boost, libedit, libevent, lz4, ncurses, openssl, protobuf, readline, zlib, perl 3 3 , cctools, CoreServices, developer_cmds }: 4 4 ··· 6 6 7 7 let 8 8 self = stdenv.mkDerivation rec { 9 - name = "mysql-${version}"; 10 - version = "5.7.25"; 9 + pname = "mysql"; 10 + version = "5.7.27"; 11 11 12 12 src = fetchurl { 13 - url = "mirror://mysql/MySQL-5.7/${name}.tar.gz"; 14 - sha256 = "0gvjcdnba7nf2dx3fbqk1qyg49zclfvaihb78l8h6qc08di1qxak"; 13 + url = "mirror://mysql/MySQL-5.7/${pname}-${version}.tar.gz"; 14 + sha256 = "1fhv16zr46pxm1j8vb8x8mh3nwzglg01arz8gnazbmjqldr5idpq"; 15 15 }; 16 16 17 17 preConfigure = stdenv.lib.optional stdenv.isDarwin '' ··· 19 19 export PATH=$PATH:$TMPDIR 20 20 ''; 21 21 22 - nativeBuildInputs = [ cmake bison ]; 22 + nativeBuildInputs = [ cmake bison pkgconfig ]; 23 23 24 24 buildInputs = [ boost libedit libevent lz4 ncurses openssl protobuf readline zlib ] 25 25 ++ stdenv.lib.optionals stdenv.isDarwin [ perl cctools CoreServices developer_cmds ]; 26 - 27 - enableParallelBuilding = true; 28 26 29 27 outputs = [ "out" "static" ]; 30 28 ··· 76 74 }; 77 75 78 76 meta = with stdenv.lib; { 79 - homepage = https://www.mysql.com/; 77 + homepage = "https://www.mysql.com/"; 80 78 description = "The world's most popular open source database"; 81 79 platforms = platforms.unix; 82 80 license = with licenses; [