nixpkgs/pkgs/development/libraries/protobufc/generic.nix

22 lines
462 B
Nix
Raw Normal View History

{ stdenv, src, version
, autoreconfHook, pkgconfig, protobuf, zlib
, ...
}:
2012-09-25 19:35:03 +02:00
2019-08-13 23:52:01 +02:00
stdenv.mkDerivation {
2019-08-13 23:52:01 +02:00
pname = "protobuf-c";
inherit version;
2012-09-25 19:35:03 +02:00
inherit src;
2012-09-25 19:35:03 +02:00
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ protobuf zlib ];
2012-09-25 19:35:03 +02:00
2014-09-18 09:49:08 +02:00
meta = with stdenv.lib; {
homepage = https://github.com/protobuf-c/protobuf-c/;
2012-09-25 19:35:03 +02:00
description = "C bindings for Google's Protocol Buffers";
2014-09-18 09:49:08 +02:00
license = licenses.bsd2;
platforms = platforms.all;
2012-09-25 19:35:03 +02:00
};
}