2017-12-27 15:15:33 +00:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, vim, mysql
|
|
|
|
, libaio }:
|
2012-10-26 12:45:16 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-07-07 23:26:09 +00:00
|
|
|
name = "sysbench-1.0.15";
|
2015-04-01 23:39:50 +00:00
|
|
|
|
2017-09-05 21:26:13 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
2017-12-27 15:15:33 +00:00
|
|
|
buildInputs = [ vim mysql.connector-c libaio ];
|
2015-04-01 23:39:50 +00:00
|
|
|
|
2017-04-27 16:42:57 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "akopytov";
|
|
|
|
repo = "sysbench";
|
2018-07-07 23:26:09 +00:00
|
|
|
rev = "1.0.15";
|
|
|
|
sha256 = "0ddj4mxxqlnlp817ix2qad0v3p83azi9wyz4h7mffchgp3mndp9z";
|
2012-10-26 12:45:16 +00:00
|
|
|
};
|
2015-04-01 23:39:50 +00:00
|
|
|
|
2012-10-26 12:45:16 +00:00
|
|
|
meta = {
|
2013-10-06 09:49:53 +00:00
|
|
|
description = "Modular, cross-platform and multi-threaded benchmark tool";
|
2014-06-19 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2012-10-26 12:45:16 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|