mysql57: 5.7.25 -> 5.7.27
This commit is contained in:
parent
b9a7c07319
commit
88770b01d5
1 changed files with 7 additions and 9 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchurl, cmake, bison
|
{ stdenv, fetchurl, cmake, bison, pkgconfig
|
||||||
, boost, libedit, libevent, lz4, ncurses, openssl, protobuf, readline, zlib, perl
|
, boost, libedit, libevent, lz4, ncurses, openssl, protobuf, readline, zlib, perl
|
||||||
, cctools, CoreServices, developer_cmds }:
|
, cctools, CoreServices, developer_cmds }:
|
||||||
|
|
||||||
|
@ -6,12 +6,12 @@
|
||||||
|
|
||||||
let
|
let
|
||||||
self = stdenv.mkDerivation rec {
|
self = stdenv.mkDerivation rec {
|
||||||
name = "mysql-${version}";
|
pname = "mysql";
|
||||||
version = "5.7.25";
|
version = "5.7.27";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://mysql/MySQL-5.7/${name}.tar.gz";
|
url = "mirror://mysql/MySQL-5.7/${pname}-${version}.tar.gz";
|
||||||
sha256 = "0gvjcdnba7nf2dx3fbqk1qyg49zclfvaihb78l8h6qc08di1qxak";
|
sha256 = "1fhv16zr46pxm1j8vb8x8mh3nwzglg01arz8gnazbmjqldr5idpq";
|
||||||
};
|
};
|
||||||
|
|
||||||
preConfigure = stdenv.lib.optional stdenv.isDarwin ''
|
preConfigure = stdenv.lib.optional stdenv.isDarwin ''
|
||||||
|
@ -19,13 +19,11 @@ self = stdenv.mkDerivation rec {
|
||||||
export PATH=$PATH:$TMPDIR
|
export PATH=$PATH:$TMPDIR
|
||||||
'';
|
'';
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake bison ];
|
nativeBuildInputs = [ cmake bison pkgconfig ];
|
||||||
|
|
||||||
buildInputs = [ boost libedit libevent lz4 ncurses openssl protobuf readline zlib ]
|
buildInputs = [ boost libedit libevent lz4 ncurses openssl protobuf readline zlib ]
|
||||||
++ stdenv.lib.optionals stdenv.isDarwin [ perl cctools CoreServices developer_cmds ];
|
++ stdenv.lib.optionals stdenv.isDarwin [ perl cctools CoreServices developer_cmds ];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
|
||||||
|
|
||||||
outputs = [ "out" "static" ];
|
outputs = [ "out" "static" ];
|
||||||
|
|
||||||
cmakeFlags = [
|
cmakeFlags = [
|
||||||
|
@ -76,7 +74,7 @@ self = stdenv.mkDerivation rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://www.mysql.com/;
|
homepage = "https://www.mysql.com/";
|
||||||
description = "The world's most popular open source database";
|
description = "The world's most popular open source database";
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
license = with licenses; [
|
license = with licenses; [
|
||||||
|
|
Loading…
Reference in a new issue