2019-09-22 08:38:09 +01:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, vim, libmysqlclient
|
2017-12-27 15:15:33 +00:00
|
|
|
, libaio }:
|
2012-10-26 13:45:16 +01:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-04-03 05:48:27 +01:00
|
|
|
name = "sysbench-1.0.17";
|
2015-04-02 00:39:50 +01:00
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
2019-09-22 08:38:09 +01:00
|
|
|
buildInputs = [ vim libmysqlclient libaio ];
|
2015-04-02 00:39:50 +01:00
|
|
|
|
2017-04-27 17:42:57 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "akopytov";
|
|
|
|
repo = "sysbench";
|
2019-04-03 05:48:27 +01:00
|
|
|
rev = "1.0.17";
|
|
|
|
sha256 = "02i9knvp0bjw6ri848xxiy2dbww2xv70nah9yn67a6zgw617hwa6";
|
2012-10-26 13:45:16 +01:00
|
|
|
};
|
2015-04-02 00:39:50 +01:00
|
|
|
|
2012-10-26 13:45:16 +01:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|