lol
at 18.03-beta 21 lines 510 B view raw
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 nativeBuildInputs = [ autoreconfHook pkgconfig ]; 12 buildInputs = [ protobuf zlib ]; 13 14 meta = with stdenv.lib; { 15 homepage = https://github.com/protobuf-c/protobuf-c/; 16 description = "C bindings for Google's Protocol Buffers"; 17 license = licenses.bsd2; 18 platforms = platforms.all; 19 maintainers = with maintainers; [ wkennington ]; 20 }; 21}