nixpkgs/pkgs/development/tools/misc/sysbench/default.nix

24 lines
612 B
Nix
Raw Normal View History

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-29 02:14:11 +02:00
buildInputs = [ autoreconfHook libmysql libxslt zlib ];
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
};
2012-10-26 14:45:16 +02:00
preAutoreconf = ''
touch NEWS AUTHORS
'';
meta = {
description = "Modular, cross-platform and multi-threaded benchmark tool";
license = stdenv.lib.licenses.gpl2;
2012-10-26 14:45:16 +02:00
platforms = stdenv.lib.platforms.linux;
};
}