nixpkgs/pkgs/development/libraries/protobuf/generic.nix
Eduard Bachmakov 352ff0be29 protobuf: 3.0.0-alpha-3.1 -> 3.0.0-beta-2
Also split out gmock's source so that it can be copied into protobuf's
source. Hopefull this hack can be removed again once gmock is replaced
by gtest.

This does not include python bindings.
2016-01-18 00:43:21 -05:00

40 lines
916 B
Nix

{ stdenv, version, src
, autoreconfHook, zlib, gtest
, ...
}:
stdenv.mkDerivation rec {
name = "protobuf-${version}";
inherit src;
postPatch = ''
rm -rf gtest
cp -r ${gtest.source} gtest
chmod -R a+w gtest
'' + stdenv.lib.optionalString stdenv.isDarwin ''
substituteInPlace src/google/protobuf/testing/googletest.cc \
--replace 'tmpnam(b)' '"'$TMPDIR'/foo"'
'';
buildInputs = [ autoreconfHook zlib ];
doCheck = true;
meta = {
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 = "mBSD";
homepage = https://developers.google.com/protocol-buffers/;
};
passthru.version = version;
}