2015-02-06 21:21:57 +01:00
|
|
|
{ stdenv, version, src
|
|
|
|
, autoreconfHook, zlib, gtest
|
|
|
|
, ...
|
|
|
|
}:
|
2010-10-30 23:44:22 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-02-11 10:21:51 +01:00
|
|
|
name = "protobuf-v${version}";
|
2014-11-19 19:33:20 +01:00
|
|
|
|
2015-02-06 21:21:57 +01:00
|
|
|
inherit src;
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
rm -rf gtest
|
|
|
|
cp -r ${gtest.source} gtest
|
|
|
|
chmod -R a+w gtest
|
|
|
|
'';
|
2014-11-19 19:33:20 +01:00
|
|
|
|
2015-02-06 21:21:57 +01:00
|
|
|
buildInputs = [ autoreconfHook zlib ];
|
2010-10-30 23:44:22 +02:00
|
|
|
|
2014-09-18 13:12:01 +02:00
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = {
|
2010-10-30 23:44:22 +02:00
|
|
|
description = "Protocol Buffers - Google's data interchange format";
|
2014-09-18 13:12:01 +02:00
|
|
|
|
2014-11-25 12:59:56 +01:00
|
|
|
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.
|
|
|
|
'';
|
2014-09-18 13:12:01 +02:00
|
|
|
|
2014-11-25 12:59:56 +01:00
|
|
|
license = "mBSD";
|
2014-09-18 13:12:01 +02:00
|
|
|
|
2014-11-25 12:59:56 +01:00
|
|
|
homepage = http://code.google.com/p/protobuf/;
|
2010-10-30 23:44:22 +02:00
|
|
|
};
|
2015-02-20 19:36:16 +01:00
|
|
|
|
|
|
|
passthru.version = version;
|
2010-10-30 23:44:22 +02:00
|
|
|
}
|