1{ stdenv, fetchgit, libmysql, libxslt, zlib, autoreconfHook }:
2
3stdenv.mkDerivation rec {
4 name = "sysbench-2015-04-22";
5
6 buildInputs = [ autoreconfHook libmysql libxslt zlib ];
7
8 src = fetchgit {
9 url = git://github.com/akopytov/sysbench.git;
10 rev = "2b3042883090c9cf8cb9be2b24d3590cdcee112f";
11 sha256 = "0di6jc9ybnqk3pqg45lks2c9003l74xz4g619haw36fvbi28aql6";
12 };
13
14 preAutoreconf = ''
15 touch NEWS AUTHORS
16 '';
17
18 meta = {
19 description = "Modular, cross-platform and multi-threaded benchmark tool";
20 license = stdenv.lib.licenses.gpl2;
21 platforms = stdenv.lib.platforms.linux;
22 };
23}