Skip to content

Commit

Permalink
sysbench: 2015-04-22 -> 1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamc committed Apr 27, 2017
1 parent 32401d1 commit a3b9dbd
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions pkgs/development/tools/misc/sysbench/default.nix
@@ -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;
Expand Down

0 comments on commit a3b9dbd

Please sign in to comment.