nixpkgs/pkgs/tools/networking/memtier-benchmark/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
920 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv, fetchFromGitHub, autoreconfHook
2021-01-17 03:51:22 +00:00
, pkg-config, libevent, pcre, zlib, openssl
}:
stdenv.mkDerivation rec {
pname = "memtier-benchmark";
2024-07-31 06:56:36 +00:00
version = "2.1.1";
src = fetchFromGitHub {
owner = "redislabs";
repo = "memtier_benchmark";
rev = "refs/tags/${version}";
2024-07-31 06:56:36 +00:00
sha256 = "sha256-mYqbtyXVx21rMJmZubFuAVV3qEmk0G3H3fjL6WnUzzM=";
};
patchPhase = ''
substituteInPlace ./configure.ac \
--replace '1.2.8' '${version}'
'';
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ libevent pcre zlib openssl ];
meta = {
description = "Redis and Memcached traffic generation and benchmarking tool";
homepage = "https://github.com/redislabs/memtier_benchmark";
2024-04-26 11:35:31 +00:00
license = lib.licenses.gpl2Only;
2021-01-15 09:19:50 +00:00
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ thoughtpolice ];
2024-02-11 02:19:15 +00:00
mainProgram = "memtier_benchmark";
};
}