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