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

34 lines
821 B
Nix
Raw Normal View History

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