-
-
Notifications
You must be signed in to change notification settings - Fork 14.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #251825 from ditsuke/add/modern-cpp-kafka
modern-cpp-kafka: init at 2023.03.07
- Loading branch information
Showing
2 changed files
with
66 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4424,6 +4424,15 @@ | |
githubId = 14034137; | ||
name = "Mostly Void"; | ||
}; | ||
ditsuke = { | ||
name = "Tushar"; | ||
email = "[email protected]"; | ||
github = "ditsuke"; | ||
githubId = 72784348; | ||
keys = [{ | ||
fingerprint = "8FD2 153F 4889 541A 54F1 E09E 71B6 C31C 8A5A 9D21"; | ||
}]; | ||
}; | ||
djacu = { | ||
email = "[email protected]"; | ||
github = "djacu"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{ lib | ||
, stdenv | ||
, fetchFromGitHub | ||
, fetchpatch | ||
, cmake | ||
, boost | ||
, rdkafka | ||
, gtest | ||
, rapidjson | ||
}: | ||
|
||
stdenv.mkDerivation rec { | ||
pname = "modern-cpp-kafka"; | ||
version = "2023.03.07"; | ||
|
||
src = fetchFromGitHub { | ||
repo = "modern-cpp-kafka"; | ||
owner = "morganstanley"; | ||
rev = "v${version}"; | ||
hash = "sha256-7hkwM1YbveQpDRqwMZ3MXM88LTwlAT7uB8NL0t409To="; | ||
}; | ||
|
||
patches = [ | ||
(fetchpatch { | ||
name = "fix-avoid-overwriting-library-paths.patch"; | ||
url = "https://github.com/morganstanley/modern-cpp-kafka/pull/221.patch"; | ||
hash = "sha256-UsQcMvJoRTn5kgXhmXOyqfW3n59kGKO596U2WjtdqAY="; | ||
}) | ||
(fetchpatch { | ||
name = "add-pkg-config-cmake-config.patch"; | ||
url = "https://github.com/morganstanley/modern-cpp-kafka/pull/222.patch"; | ||
hash = "sha256-OjoSttnpgEwSZjCVKc888xJb5f1Dulu/rQqoGmqXNM4="; | ||
}) | ||
]; | ||
|
||
nativeBuildInputs = [ cmake ]; | ||
buildInputs = [ boost ]; | ||
propagatedBuildInputs = [ rdkafka ]; | ||
|
||
cmakeFlags = [ | ||
"-DLIBRDKAFKA_INCLUDE_DIR=${rdkafka.out}/include" | ||
"-DGTEST_LIBRARY_DIR=${gtest.out}/lib" | ||
"-DGTEST_INCLUDE_DIR=${gtest.dev}/include" | ||
"-DRAPIDJSON_INCLUDE_DIRS=${rapidjson.out}/include" | ||
"-DCMAKE_CXX_FLAGS=-Wno-uninitialized" | ||
]; | ||
|
||
checkInputs = [ gtest rapidjson ]; | ||
|
||
meta = with lib; { | ||
description = "A C++ API for Kafka clients (i.e. KafkaProducer, KafkaConsumer, AdminClient)"; | ||
homepage = "https://github.com/morganstanley/modern-cpp-kafka"; | ||
license = licenses.asl20; | ||
maintainers = with maintainers; [ ditsuke ]; | ||
platforms = platforms.unix; | ||
}; | ||
} |