mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 23:54:01 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
81 lines
2.5 KiB
Nix
81 lines
2.5 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, autoreconfHook
|
|
, pkg-config
|
|
, libmysqlclient
|
|
, libaio
|
|
, luajit
|
|
# For testing:
|
|
, testers
|
|
, sysbench
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "sysbench";
|
|
version = "1.0.20";
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
buildInputs = [ libmysqlclient luajit ] ++ lib.optionals stdenv.hostPlatform.isLinux [ libaio ];
|
|
depsBuildBuild = [ pkg-config ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "akopytov";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1sanvl2a52ff4shj62nw395zzgdgywplqvwip74ky8q7s6qjf5qy";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
configureFlags = [
|
|
# The bundled version does not build on aarch64-darwin:
|
|
# https://github.com/akopytov/sysbench/issues/416
|
|
"--with-system-luajit"
|
|
"--with-mysql-includes=${lib.getDev libmysqlclient}/include/mysql"
|
|
"--with-mysql-libs=${libmysqlclient}/lib/mysql"
|
|
];
|
|
|
|
# We cannot use the regular nixpkgs ck here, since it has very
|
|
# different performance characteristics than the vendored one.
|
|
# On the downside the vendored libck version require more fixes for cross-compilation.
|
|
# Sysbench related on statically linked vendored libck.
|
|
postPatch = ''
|
|
substituteInPlace \
|
|
third_party/concurrency_kit/ck/configure \
|
|
--replace-fail \
|
|
'COMPILER=`./.1 2> /dev/null`' \
|
|
"COMPILER=${if stdenv.cc.isGNU then "gcc" else if stdenv.cc.isClang then "clang" else throw "Unsupported compiler"}" \
|
|
--replace-fail \
|
|
'PLATFORM=`uname -m 2> /dev/null`' \
|
|
"PLATFORM=${stdenv.hostPlatform.parsed.cpu.name}"
|
|
substituteInPlace \
|
|
third_party/concurrency_kit/ck/src/Makefile.in \
|
|
--replace-fail \
|
|
"ar rcs" \
|
|
"${stdenv.cc.targetPrefix}ar rcs"
|
|
'';
|
|
|
|
passthru.tests = {
|
|
versionTest = testers.testVersion {
|
|
package = sysbench;
|
|
};
|
|
};
|
|
|
|
meta = {
|
|
description = "Modular, cross-platform and multi-threaded benchmark tool";
|
|
mainProgram = "sysbench";
|
|
longDescription = ''
|
|
sysbench is a scriptable multi-threaded benchmark tool based on LuaJIT.
|
|
It is most frequently used for database benchmarks, but can also be used
|
|
to create arbitrarily complex workloads that do not involve a database
|
|
server.
|
|
'';
|
|
homepage = "https://github.com/akopytov/sysbench";
|
|
downloadPage = "https://github.com/akopytov/sysbench/releases/tag/${version}";
|
|
changelog = "https://github.com/akopytov/sysbench/blob/${version}/ChangeLog";
|
|
license = lib.licenses.gpl2;
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|