nixpkgs/pkgs/development/libraries/protobufc/generic.nix
2015-02-06 12:53:09 -08:00

21 lines
482 B
Nix

{ stdenv, src, version
, autoreconfHook, pkgconfig, protobuf, zlib
, ...
}:
stdenv.mkDerivation rec {
name = "protobuf-c-${version}";
inherit src;
buildInputs = [ autoreconfHook pkgconfig protobuf zlib ];
meta = with stdenv.lib; {
homepage = http://github.com/protobuf-c/protobuf-c/;
description = "C bindings for Google's Protocol Buffers";
license = licenses.bsd2;
platforms = platforms.all;
maintainers = with maintainers; [ wkennington ];
};
}