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

20 lines
558 B
Nix
Raw Normal View History

2012-10-26 12:45:16 +00:00
{stdenv, fetchurl, mysql, libxslt, zlib, autoreconfHook }:
stdenv.mkDerivation rec {
name = "sysbench-0.4.12";
buildInputs = [ autoreconfHook mysql libxslt zlib ];
src = fetchurl {
2013-02-06 20:38:44 +00:00
url = mirror://sourceforge/sysbench/sysbench-0.4.12.tar.gz;
2012-10-26 12:45:16 +00:00
sha256 = "17pa4cw7wxvlb4mba943lfs3b3jdi64mlnaf4n8jq09y35j79yl3";
};
preAutoreconf = ''
touch NEWS AUTHORS
'';
meta = {
description = "Modular, cross-platform and multi-threaded benchmark tool";
license = stdenv.lib.licenses.gpl2;
2012-10-26 12:45:16 +00:00
platforms = stdenv.lib.platforms.linux;
};
}