nixpkgs/pkgs/servers/tarantool/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

55 lines
1,001 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, cmake
, zlib
, openssl
, c-ares
, readline
, icu
, git
, gbenchmark
, nghttp2
}:
stdenv.mkDerivation rec {
pname = "tarantool";
version = "2.10.4";
src = fetchFromGitHub {
owner = "tarantool";
repo = pname;
rev = version;
sha256 = "sha256-yCRU5IxC6gNS+O2KYtKWjFk35EHkBnnzWy5UnyuB9f4=";
fetchSubmodules = true;
};
buildInputs = [
nghttp2
git
readline
icu
zlib
openssl
c-ares
];
nativeCheckInputs = [ gbenchmark ];
nativeBuildInputs = [ cmake ];
cmakeFlags = [
"-DCMAKE_BUILD_TYPE=RelWithDebInfo"
"-DENABLE_DIST=ON"
"-DTARANTOOL_VERSION=${version}.builtByNix" # expects the commit hash as well
];
meta = with lib; {
description = "An in-memory computing platform consisting of a database and an application server";
homepage = "https://www.tarantool.io/";
license = licenses.bsd2;
mainProgram = "tarantool";
maintainers = with maintainers; [ dit7ya ];
};
}