lol
1{ stdenv, src, version
2, autoreconfHook, pkgconfig, protobuf, zlib
3, ...
4}:
5
6stdenv.mkDerivation rec {
7 name = "protobuf-c-${version}";
8
9 inherit src;
10
11 buildInputs = [ autoreconfHook pkgconfig protobuf zlib ];
12
13 meta = with stdenv.lib; {
14 homepage = http://github.com/protobuf-c/protobuf-c/;
15 description = "C bindings for Google's Protocol Buffers";
16 license = licenses.bsd2;
17 platforms = platforms.all;
18 maintainers = with maintainers; [ wkennington ];
19 };
20}