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

31 lines
796 B
Nix
Raw Normal View History

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