sysbench: 1.0.17 -> 1.0.18

* sysbench: 1.0.17 -> 1.0.18 (#72685)

* sysbench: set meta.homepage
+ cleanup build inputs (vim isn't needed since 1.0.12)
+ enable parallel building
This commit is contained in:
R. RyanTM 2019-11-05 09:50:06 -08:00 committed by Renaud
parent 65db5ce85c
commit 1a1bab34cc

View File

@ -1,21 +1,26 @@
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, vim, libmysqlclient { stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
, libaio }: , libmysqlclient, libaio
}:
stdenv.mkDerivation { stdenv.mkDerivation rec {
name = "sysbench-1.0.17"; pname = "sysbench";
version = "1.0.18";
nativeBuildInputs = [ autoreconfHook pkgconfig ]; nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ vim libmysqlclient libaio ]; buildInputs = [ libmysqlclient libaio ];
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "akopytov"; owner = "akopytov";
repo = "sysbench"; repo = pname;
rev = "1.0.17"; rev = version;
sha256 = "02i9knvp0bjw6ri848xxiy2dbww2xv70nah9yn67a6zgw617hwa6"; sha256 = "1r6lkyfp65xqklj1rdfw551srqqyak144agi8x3wjz3wmsbqls19";
}; };
enableParallelBuilding = true;
meta = { meta = {
description = "Modular, cross-platform and multi-threaded benchmark tool"; description = "Modular, cross-platform and multi-threaded benchmark tool";
homepage = https://github.com/akopytov/sysbench;
license = stdenv.lib.licenses.gpl2; license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.linux; platforms = stdenv.lib.platforms.linux;
}; };