mysql: Use libs in place of the binary mysql

This commit is contained in:
William A. Kennington III
2015-04-01 16:39:50 -07:00
parent bc7b39784a
commit a604b42480
28 changed files with 59 additions and 56 deletions

View File

@@ -2,11 +2,14 @@
stdenv.mkDerivation rec {
name = "sysbench-0.4.12";
buildInputs = [ autoreconfHook mysql libxslt zlib ];
buildInputs = [ autoreconfHook mysql.lib libxslt zlib ];
src = fetchurl {
url = mirror://sourceforge/sysbench/sysbench-0.4.12.tar.gz;
sha256 = "17pa4cw7wxvlb4mba943lfs3b3jdi64mlnaf4n8jq09y35j79yl3";
};
preAutoreconf = ''
touch NEWS AUTHORS
'';