2015-04-28 17:14:11 -07:00
|
|
|
{ stdenv, fetchgit, libmysql, libxslt, zlib, autoreconfHook }:
|
2012-10-26 05:45:16 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-04-28 17:14:11 -07:00
|
|
|
name = "sysbench-2015-04-22";
|
2015-04-01 16:39:50 -07:00
|
|
|
|
2015-04-28 17:14:11 -07:00
|
|
|
buildInputs = [ autoreconfHook libmysql libxslt zlib ];
|
2015-04-01 16:39:50 -07:00
|
|
|
|
2015-04-28 17:14:11 -07:00
|
|
|
src = fetchgit {
|
|
|
|
url = git://github.com/akopytov/sysbench.git;
|
|
|
|
rev = "2b3042883090c9cf8cb9be2b24d3590cdcee112f";
|
2016-06-02 04:26:44 -07:00
|
|
|
sha256 = "1xlb3fracha3wva3dmmjk36b262vblynkmiz8n0mn1vkc78bssaw";
|
2012-10-26 05:45:16 -07:00
|
|
|
};
|
2015-04-01 16:39:50 -07:00
|
|
|
|
2012-10-26 05:45:16 -07:00
|
|
|
preAutoreconf = ''
|
|
|
|
touch NEWS AUTHORS
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2013-10-06 02:49:53 -07:00
|
|
|
description = "Modular, cross-platform and multi-threaded benchmark tool";
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2012-10-26 05:45:16 -07:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|