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

24 lines
612 B
Nix
Raw Normal View History

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-29 01:14:11 +01:00
buildInputs = [ autoreconfHook libmysql libxslt zlib ];
2015-04-29 01:14:11 +01:00
src = fetchgit {
url = git://github.com/akopytov/sysbench.git;
rev = "2b3042883090c9cf8cb9be2b24d3590cdcee112f";
sha256 = "1xlb3fracha3wva3dmmjk36b262vblynkmiz8n0mn1vkc78bssaw";
2012-10-26 13:45:16 +01:00
};
2012-10-26 13:45:16 +01:00
preAutoreconf = ''
touch NEWS AUTHORS
'';
meta = {
description = "Modular, cross-platform and multi-threaded benchmark tool";
license = stdenv.lib.licenses.gpl2;
2012-10-26 13:45:16 +01:00
platforms = stdenv.lib.platforms.linux;
};
}