summary refs log tree commit diff
path: root/pkgs/development/tools/misc/sysbench/default.nix
blob: e3acf620c73b43e131680e95ee4ca806404094ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{stdenv, fetchurl, mysql, libxslt, zlib, autoreconfHook }:

stdenv.mkDerivation rec {
  name = "sysbench-0.4.12";
  buildInputs = [ autoreconfHook mysql libxslt zlib ];
  src = fetchurl {
    url = mirror://sourceforge/sysbench/sysbench-0.4.12.tar.gz;
    sha256 = "17pa4cw7wxvlb4mba943lfs3b3jdi64mlnaf4n8jq09y35j79yl3";
  };
  preAutoreconf = ''
    touch NEWS AUTHORS
  '';

  meta = {
    description = "Modular, cross-platform and multi-threaded benchmark tool";
    license = "GPLv2";
    platforms = stdenv.lib.platforms.linux;
  };
}