Revert "Merge branch 'staging-next'"
This reverts commit41af38f372, reversing changes made tof0fec244ca. Let's delay this. We have some serious regressions.
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
{ stdenv, fetchFromGitHub, pkgconfig, nettools, gettext, flex
|
||||
, readline ? null, openssl ? null, python2 ? null, ncurses ? null, rocksdb
|
||||
, sqlite ? null, postgresql ? null, libmysqlclient ? null, zlib ? null, lzo ? null
|
||||
, sqlite ? null, postgresql ? null, mysql ? null, zlib ? null, lzo ? null
|
||||
, jansson ? null, acl ? null, glusterfs ? null, libceph ? null, libcap ? null
|
||||
}:
|
||||
|
||||
assert sqlite != null || postgresql != null || libmysqlclient != null;
|
||||
assert sqlite != null || postgresql != null || mysql != null;
|
||||
|
||||
with stdenv.lib;
|
||||
let
|
||||
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [
|
||||
nettools gettext readline openssl python2 flex ncurses sqlite postgresql
|
||||
libmysqlclient zlib lzo jansson acl glusterfs libceph libcap rocksdb
|
||||
mysql.connector-c zlib lzo jansson acl glusterfs libceph libcap rocksdb
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
@@ -55,7 +55,7 @@ stdenv.mkDerivation rec {
|
||||
++ optional (openssl != null) "--with-openssl=${openssl.dev}"
|
||||
++ optional (sqlite != null) "--with-sqlite3=${sqlite.dev}"
|
||||
++ optional (postgresql != null) "--with-postgresql=${postgresql}"
|
||||
++ optional (libmysqlclient != null) "--with-mysql=${libmysqlclient}"
|
||||
++ optional (mysql != null) "--with-mysql=${mysql.connector-c}"
|
||||
++ optional (zlib != null) "--with-zlib=${zlib.dev}"
|
||||
++ optional (lzo != null) "--with-lzo=${lzo}"
|
||||
++ optional (jansson != null) "--with-jansson=${jansson}"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{ stdenv, fetchFromGitHub, cmake, pkgconfig
|
||||
, glib, zlib, pcre, libmysqlclient, libressl }:
|
||||
, glib, zlib, pcre, mysql, libressl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "0.9.5";
|
||||
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
nativeBuildInputs = [ cmake pkgconfig ];
|
||||
|
||||
buildInputs = [ glib zlib pcre libmysqlclient libressl ];
|
||||
buildInputs = [ glib zlib pcre mysql.connector-c libressl ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = ''High-perfomance MySQL backup tool'';
|
||||
|
||||
Reference in New Issue
Block a user