nixpkgs/pkgs/development/libraries/protobufc/default.nix
William A. Kennington III b2600df4a8 protobuf-c: 0.15 -> 1.0.2
2014-09-18 00:49:18 -07:00

24 lines
660 B
Nix

{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, protobuf, zlib }:
stdenv.mkDerivation rec {
name = "protobuf-c-${version}";
version = "1.0.2";
src = fetchFromGitHub {
owner = "protobuf-c";
repo = "protobuf-c";
rev = "v${version}";
sha256 = "1harabw7qdgcmh098664xkcv8bkyach6i35sisc40yhvagr3fzsz";
};
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 ];
};
}