2015-04-29 01:14:11 +01:00
|
|
|
{ stdenv, fetchgit, libmysql, libxslt, zlib, autoreconfHook }:
|
2012-10-26 13:45:16 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-04-29 01:14:11 +01:00
|
|
|
name = "sysbench-2015-04-22";
|
2015-04-02 00:39:50 +01:00
|
|
|
|
2015-04-29 01:14:11 +01:00
|
|
|
buildInputs = [ autoreconfHook libmysql libxslt zlib ];
|
2015-04-02 00:39:50 +01:00
|
|
|
|
2015-04-29 01:14:11 +01:00
|
|
|
src = fetchgit {
|
|
|
|
url = git://github.com/akopytov/sysbench.git;
|
|
|
|
rev = "2b3042883090c9cf8cb9be2b24d3590cdcee112f";
|
2016-06-02 12:26:44 +01:00
|
|
|
sha256 = "1xlb3fracha3wva3dmmjk36b262vblynkmiz8n0mn1vkc78bssaw";
|
2012-10-26 13:45:16 +01:00
|
|
|
};
|
2015-04-02 00:39:50 +01:00
|
|
|
|
2012-10-26 13:45:16 +01:00
|
|
|
preAutoreconf = ''
|
|
|
|
touch NEWS AUTHORS
|
|
|
|
'';
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|