13 stdenv.mkDerivation rec {
17 src = fetchFromGitHub {
18 owner = "confluentinc";
21 sha256 = "194ras18xw5fcnjgg1isnb24ydx9040ndciniwcbdb7w7wd901gc";
24 outputs = [ "dev" "out" ];
26 nativeBuildInputs = [ perl ];
28 buildInputs = [ boost rdkafka jansson curl avro-c avro-cpp ];
30 makeFlags = [ "GEN_PKG_CONFIG=y" ];
33 # Fix compatibility with Avro master branch
35 url = "https://github.com/confluentinc/libserdes/commit/d7a355e712ab63ec77f6722fb5a9e8056e7416a2.patch";
36 sha256 = "14bdx075n4lxah63kp7phld9xqlz3pzs03yf3wbq4nmkgwac10dh";
41 patchShebangs configure lds-gen.pl
44 # Has a configure script but it’s not Autoconf so steal some bits from multiple-outputs.sh:
45 setOutputFlags = false;
48 configureFlagsArray+=(
49 "--libdir=''${!outputLib}/lib"
50 "--includedir=''${!outputInclude}/include"
55 installFlagsArray+=("pkgconfigdir=''${!outputDev}/lib/pkgconfig")
58 # Header files get installed with executable bit for some reason; get rid of it.
60 chmod -x ''${!outputInclude}/include/libserdes/*.h
64 description = "A schema-based serializer/deserializer C/C++ library with support for Avro and the Confluent Platform Schema Registry";
65 homepage = "https://github.com/confluentinc/libserdes";
66 license = licenses.asl20;
67 maintainers = with maintainers; [ liff ];
68 platforms = platforms.all;