sysbench: 2015-04-22 -> 1.0.6

This commit is contained in:
Graham Christensen 2017-04-27 12:42:57 -04:00
parent 32401d17c6
commit a3b9dbd0be
No known key found for this signature in database
GPG Key ID: 06121D366FE9435C

View File

@ -1,20 +1,18 @@
{ stdenv, fetchgit, libmysql, libxslt, zlib, autoreconfHook }:
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, vim, libmysql,
libaio }:
stdenv.mkDerivation rec {
name = "sysbench-2015-04-22";
name = "sysbench-1.0.6";
buildInputs = [ autoreconfHook libmysql libxslt zlib ];
buildInputs = [ autoreconfHook pkgconfig vim libmysql libaio ];
src = fetchgit {
url = git://github.com/akopytov/sysbench.git;
rev = "2b3042883090c9cf8cb9be2b24d3590cdcee112f";
sha256 = "1xlb3fracha3wva3dmmjk36b262vblynkmiz8n0mn1vkc78bssaw";
src = fetchFromGitHub {
owner = "akopytov";
repo = "sysbench";
rev = "1.0.6";
sha256 = "0y3hlhzrggyyxwf378n006zlg2kwhmhh6vq6il0qn9agjmjmhl5l";
};
preAutoreconf = ''
touch NEWS AUTHORS
'';
meta = {
description = "Modular, cross-platform and multi-threaded benchmark tool";
license = stdenv.lib.licenses.gpl2;