linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / protobufc / generic.nix
blobb64d75076bafb5180812e5c37c6607ea167f39e9
1 { lib, stdenv, src, version
2 , autoreconfHook, pkg-config, protobuf, zlib
3 , ...
4 }:
6 stdenv.mkDerivation {
7   pname = "protobuf-c";
8   inherit version;
10   inherit src;
12   nativeBuildInputs = [ autoreconfHook pkg-config ];
13   buildInputs = [ protobuf zlib ];
15   meta = with lib; {
16     homepage = "https://github.com/protobuf-c/protobuf-c/";
17     description = "C bindings for Google's Protocol Buffers";
18     license = licenses.bsd2;
19     platforms = platforms.all;
20   };