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