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

stdenv.mkDerivation rec {
  name = "sysbench-0.4.12";

  buildInputs = [ autoreconfHook mysql.lib 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 = stdenv.lib.licenses.gpl2;
    platforms = stdenv.lib.platforms.linux;
  };
}