summary refs log tree commit diff
path: root/pkgs/development/libraries/protobuf/default.nix
blob: 874c58c6bf6caf99e0131987e80172759407327e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ stdenv, fetchFromGitHub, autoreconfHook, zlib }:

stdenv.mkDerivation rec {
  name = "protobuf-${version}";
  version = "2.6.0";

  src = fetchFromGitHub {
    owner = "google";
    repo = "protobuf";
    rev = "v${version}";
    sha256 = "020a59x9kbrbhh207j62gw55pj7p5rvz01i6ml6xhpcghp7l50b4";
  };

  buildInputs = [ autoreconfHook zlib ];

  meta = with stdenv.lib; {
    homepage = http://code.google.com/p/protobuf/;
    description = "Protocol Buffers - Google's data interchange format";
    longDescription =
      '' Protocol Buffers are a way of encoding structured data in an
         efficient yet extensible format.  Google uses Protocol Buffers for
         almost all of its internal RPC protocols and file formats.
      '';
    license = licenses.bsd3;
    platforms = platforms.all;
    maintainers = with maintainers; [ wkennington ];
  };
}