nixpkgs/pkgs/development/libraries/grpc/default.nix

40 lines
1.2 KiB
Nix
Raw Normal View History

2018-09-25 15:54:32 +00:00
{ stdenv, fetchFromGitHub, cmake, zlib, c-ares, pkgconfig, openssl, protobuf, gflags }:
2018-01-09 02:27:12 +00:00
stdenv.mkDerivation rec {
version = "1.18.0";
name = "grpc-${version}";
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}";
sha256 = "0pf8q1z3qhlljlj6h7isvqvsxhh4612z780xcbv1h9lj7cdpr77m";
};
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ zlib c-ares c-ares.cmake-config openssl protobuf gflags ];
2018-08-16 18:48:37 +00:00
cmakeFlags =
[ "-DgRPC_ZLIB_PROVIDER=package"
"-DgRPC_CARES_PROVIDER=package"
"-DgRPC_SSL_PROVIDER=package"
"-DgRPC_PROTOBUF_PROVIDER=package"
"-DgRPC_GFLAGS_PROVIDER=package"
];
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
'';
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.cc.isClang "-Wno-error=unknown-warning-option";
enableParallelBuilds = true;
meta = with stdenv.lib; {
description = "The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)";
license = licenses.asl20;
2018-08-16 18:48:37 +00:00
maintainers = [ maintainers.lnl7 ];
homepage = https://grpc.io/;
};
}