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

34 lines
821 B
Nix
Raw Normal View History

2018-04-19 14:20:18 +01:00
{ stdenv, fetchFromGitHub, zlib, perl, pkgconfig, python, openssl }:
2015-02-03 08:44:01 +00:00
stdenv.mkDerivation rec {
pname = "rdkafka";
2019-09-29 03:56:22 +01:00
version = "1.2.0";
2015-02-03 08:44:01 +00:00
2015-03-11 23:39:36 +00:00
src = fetchFromGitHub {
owner = "edenhill";
repo = "librdkafka";
2017-05-05 03:55:07 +01:00
rev = "v${version}";
2019-09-29 03:56:22 +01:00
sha256 = "03h4yxnbnig17zapnnyvvnh1bsp0qalvlpb4fc3bpvs7yj4d8v25";
2015-02-03 08:44:01 +00:00
};
nativeBuildInputs = [ pkgconfig ];
2019-09-29 03:56:22 +01:00
2018-04-19 14:20:18 +01:00
buildInputs = [ zlib perl python openssl ];
2015-03-11 23:39:36 +00:00
NIX_CFLAGS_COMPILE = "-Wno-error=strict-overflow";
2015-03-11 23:39:36 +00:00
postPatch = ''
patchShebangs .
'';
2015-02-03 08:44:01 +00:00
2019-09-29 03:56:22 +01:00
enableParallelBuilding = true;
2015-02-03 08:44:01 +00:00
meta = with stdenv.lib; {
description = "librdkafka - Apache Kafka C/C++ client library";
homepage = https://github.com/edenhill/librdkafka;
2015-02-03 08:44:01 +00:00
license = licenses.bsd2;
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ boothead ];
2015-02-03 08:44:01 +00:00
};
}