2019-11-05 17:50:06 +00:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
|
|
|
|
, libmysqlclient, libaio
|
|
|
|
}:
|
2012-10-26 13:45:16 +01:00
|
|
|
|
2019-11-05 17:50:06 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "sysbench";
|
2019-12-24 20:06:15 +00:00
|
|
|
version = "1.0.19";
|
2015-04-02 00:39:50 +01:00
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
2019-11-05 17:50:06 +00:00
|
|
|
buildInputs = [ libmysqlclient libaio ];
|
2015-04-02 00:39:50 +01:00
|
|
|
|
2017-04-27 17:42:57 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "akopytov";
|
2019-11-05 17:50:06 +00:00
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2019-12-24 20:06:15 +00:00
|
|
|
sha256 = "1zgqb9cr7ld3vw4a3jhq1mlszhcyjlpr0c8q1jcp1d27l9dcvd1w";
|
2012-10-26 13:45:16 +01:00
|
|
|
};
|
2015-04-02 00:39:50 +01:00
|
|
|
|
2019-11-05 17:50:06 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
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";
|
2019-11-05 17:50:06 +00:00
|
|
|
homepage = https://github.com/akopytov/sysbench;
|
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;
|
|
|
|
};
|
|
|
|
}
|