about summary refs log tree commit diff
path: root/pkgs/development/tools/misc/sysbench/default.nix
blob: 540db210eb4e3f7cd12671909f7002c1beece094 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, vim, libmysql,
  libaio }:

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

  buildInputs = [ autoreconfHook pkgconfig vim libmysql libaio ];

  src = fetchFromGitHub {
    owner = "akopytov";
    repo = "sysbench";
    rev = "1.0.6";
    sha256 = "0y3hlhzrggyyxwf378n006zlg2kwhmhh6vq6il0qn9agjmjmhl5l";
  };

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