2021-08-02 11:12:04 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, fetchpatch
|
|
|
|
, buildPackages
|
|
|
|
, cmake
|
|
|
|
, zlib
|
|
|
|
, c-ares
|
|
|
|
, pkg-config
|
|
|
|
, re2
|
|
|
|
, openssl
|
|
|
|
, protobuf
|
|
|
|
, grpc
|
|
|
|
, abseil-cpp
|
|
|
|
, libnsl
|
2021-12-22 01:59:19 +00:00
|
|
|
|
|
|
|
# tests
|
|
|
|
, python3
|
2022-08-05 23:33:26 +00:00
|
|
|
, arrow-cpp
|
2020-08-21 12:39:49 +00:00
|
|
|
}:
|
2018-01-09 02:27:12 +00:00
|
|
|
|
2018-02-02 03:26:58 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "grpc";
|
2023-08-11 13:32:35 +00:00
|
|
|
version = "1.57.0"; # N.B: if you change this, please update:
|
2021-12-22 01:59:19 +00:00
|
|
|
# pythonPackages.grpcio-tools
|
|
|
|
# pythonPackages.grpcio-status
|
2021-08-02 08:47:21 +00:00
|
|
|
|
2018-09-25 15:54:32 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "grpc";
|
|
|
|
repo = "grpc";
|
2018-11-19 04:41:13 +00:00
|
|
|
rev = "v${version}";
|
2023-08-11 13:32:35 +00:00
|
|
|
hash = "sha256-ZPhPi4ODAAohCySVKeypaDID4ZUXvnfidOGK5EMXvh4=";
|
2019-10-23 09:20:00 +00:00
|
|
|
fetchSubmodules = true;
|
2018-02-02 03:26:58 +00:00
|
|
|
};
|
2021-08-02 08:47:21 +00:00
|
|
|
|
2019-12-02 21:02:32 +00:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
2023-03-01 01:52:56 +00:00
|
|
|
# armv6l support, https://github.com/grpc/grpc/pull/21341
|
|
|
|
name = "grpc-link-libatomic.patch";
|
|
|
|
url = "https://github.com/lopsided98/grpc/commit/164f55260262c816e19cd2c41b564486097d62fe.patch";
|
|
|
|
hash = "sha256-d6kMyjL5ZnEnEz4XZfRgXJBH53gp1r7q1tlwh+HM6+Y=";
|
2021-09-11 22:00:00 +00:00
|
|
|
})
|
2023-08-17 15:48:28 +00:00
|
|
|
# Fix generated CMake config file
|
|
|
|
# FIXME: remove when merged
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/grpc/grpc/pull/33361/commits/117dc80eb43021dd5619023ef6d02d0d6ec7ae7a.patch";
|
|
|
|
hash = "sha256-VBk3ZD5h9uOQVN0st+quUQK/wXqvfFNk8G8AN4f2MQo=";
|
|
|
|
})
|
2019-12-02 21:02:32 +00:00
|
|
|
];
|
|
|
|
|
2021-08-01 12:03:56 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ]
|
|
|
|
++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) grpc;
|
2021-03-20 04:20:00 +00:00
|
|
|
propagatedBuildInputs = [ c-ares re2 zlib abseil-cpp ];
|
2022-09-14 00:52:45 +00:00
|
|
|
buildInputs = [ openssl protobuf ]
|
2021-01-21 17:00:13 +00:00
|
|
|
++ lib.optionals stdenv.isLinux [ libnsl ];
|
2018-08-16 18:48:37 +00:00
|
|
|
|
2022-12-19 04:28:41 +00:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DgRPC_ZLIB_PROVIDER=package"
|
|
|
|
"-DgRPC_CARES_PROVIDER=package"
|
|
|
|
"-DgRPC_RE2_PROVIDER=package"
|
|
|
|
"-DgRPC_SSL_PROVIDER=package"
|
|
|
|
"-DgRPC_PROTOBUF_PROVIDER=package"
|
|
|
|
"-DgRPC_ABSL_PROVIDER=package"
|
|
|
|
"-DBUILD_SHARED_LIBS=ON"
|
|
|
|
] ++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
|
|
|
"-D_gRPC_PROTOBUF_PROTOC_EXECUTABLE=${buildPackages.protobuf}/bin/protoc"
|
2023-08-14 06:57:36 +00:00
|
|
|
]
|
|
|
|
# The build scaffold defaults to c++14 on darwin, even when the compiler uses
|
|
|
|
# a more recent c++ version by default [1]. However, downgrades are
|
|
|
|
# problematic, because the compatibility types in abseil will have different
|
|
|
|
# interface definitions than the ones used for building abseil itself.
|
|
|
|
# [1] https://github.com/grpc/grpc/blob/v1.57.0/CMakeLists.txt#L239-L243
|
|
|
|
++ (let
|
|
|
|
defaultCxxIsOlderThan17 =
|
|
|
|
(stdenv.cc.isClang && lib.versionAtLeast stdenv.cc.cc.version "16.0")
|
|
|
|
|| (stdenv.cc.isGNU && lib.versionAtLeast stdenv.cc.cc.version "11.0");
|
|
|
|
in lib.optionals (stdenv.hostPlatform.isDarwin && defaultCxxIsOlderThan17)
|
|
|
|
[
|
|
|
|
"-DCMAKE_CXX_STANDARD=17"
|
|
|
|
]);
|
2018-08-16 18:48:37 +00:00
|
|
|
|
|
|
|
# CMake creates a build directory by default, this conflicts with the
|
|
|
|
# basel BUILD file on case-insensitive filesystems.
|
|
|
|
preConfigure = ''
|
|
|
|
rm -vf BUILD
|
|
|
|
'';
|
|
|
|
|
2021-10-07 19:04:39 +00:00
|
|
|
# When natively compiling, grpc_cpp_plugin is executed from the build directory,
|
|
|
|
# needing to load dynamic libraries from the build directory, so we set
|
|
|
|
# LD_LIBRARY_PATH to enable this. When cross compiling we need to avoid this,
|
|
|
|
# since it can cause the grpc_cpp_plugin executable from buildPackages to
|
|
|
|
# crash if build and host architecture are compatible (e. g. pkgsLLVM).
|
|
|
|
preBuild = lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) ''
|
2020-01-02 00:29:34 +00:00
|
|
|
export LD_LIBRARY_PATH=$(pwd)''${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH
|
2019-04-09 19:35:12 +00:00
|
|
|
'';
|
|
|
|
|
2023-09-20 07:12:40 +00:00
|
|
|
env.NIX_CFLAGS_COMPILE = lib.concatStringsSep " " (
|
|
|
|
lib.optionals stdenv.cc.isClang [
|
|
|
|
"-Wno-error=unknown-warning-option"
|
|
|
|
] ++ lib.optionals stdenv.isAarch64 [
|
|
|
|
"-Wno-error=format-security"
|
|
|
|
]
|
|
|
|
);
|
2018-11-03 02:17:13 +00:00
|
|
|
|
2018-02-02 03:26:58 +00:00
|
|
|
enableParallelBuilds = true;
|
|
|
|
|
2021-12-22 01:59:19 +00:00
|
|
|
passthru.tests = {
|
|
|
|
inherit (python3.pkgs) grpcio-status grpcio-tools;
|
2022-08-05 23:33:26 +00:00
|
|
|
inherit arrow-cpp;
|
2021-12-22 01:59:19 +00:00
|
|
|
};
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2018-02-02 03:26:58 +00:00
|
|
|
description = "The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)";
|
|
|
|
license = licenses.asl20;
|
2021-08-02 08:47:21 +00:00
|
|
|
maintainers = with maintainers; [ lnl7 marsam ];
|
2020-04-02 09:20:00 +00:00
|
|
|
homepage = "https://grpc.io/";
|
|
|
|
platforms = platforms.all;
|
|
|
|
changelog = "https://github.com/grpc/grpc/releases/tag/v${version}";
|
2018-02-02 03:26:58 +00:00
|
|
|
};
|
|
|
|
}
|