2012-10-26 13:45:16 +01:00
|
|
|
{stdenv, fetchurl, mysql, libxslt, zlib, autoreconfHook }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "sysbench-0.4.12";
|
|
|
|
buildInputs = [ autoreconfHook mysql libxslt zlib ];
|
|
|
|
src = fetchurl {
|
2013-02-06 20:38:44 +00:00
|
|
|
url = mirror://sourceforge/sysbench/sysbench-0.4.12.tar.gz;
|
2012-10-26 13:45:16 +01:00
|
|
|
sha256 = "17pa4cw7wxvlb4mba943lfs3b3jdi64mlnaf4n8jq09y35j79yl3";
|
|
|
|
};
|
|
|
|
preAutoreconf = ''
|
|
|
|
touch NEWS AUTHORS
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2013-10-06 10:49:53 +01:00
|
|
|
description = "Modular, cross-platform and multi-threaded benchmark tool";
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2012-10-26 13:45:16 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|