2017-04-27 17:42:57 +01:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, vim, libmysql,
|
|
|
|
libaio }:
|
2012-10-26 13:45:16 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-04-27 17:42:57 +01:00
|
|
|
name = "sysbench-1.0.6";
|
2015-04-02 00:39:50 +01:00
|
|
|
|
2017-04-27 17:42:57 +01:00
|
|
|
buildInputs = [ autoreconfHook pkgconfig vim libmysql libaio ];
|
2015-04-02 00:39:50 +01:00
|
|
|
|
2017-04-27 17:42:57 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "akopytov";
|
|
|
|
repo = "sysbench";
|
|
|
|
rev = "1.0.6";
|
|
|
|
sha256 = "0y3hlhzrggyyxwf378n006zlg2kwhmhh6vq6il0qn9agjmjmhl5l";
|
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;
|
|
|
|
};
|
|
|
|
}
|