parent
a87e5507c0
commit
b851e970da
|
@ -1,28 +1,28 @@
|
||||||
{ stdenv, fetchFromGitHub, autoreconfHook, zlib }:
|
{ fetchurl, stdenv, zlib }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "protobuf-${version}";
|
name = "protobuf-2.5.0";
|
||||||
version = "2.6.0";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchurl {
|
||||||
owner = "google";
|
url = "http://protobuf.googlecode.com/files/${name}.tar.bz2";
|
||||||
repo = "protobuf";
|
sha256 = "0xxn9gxhvsgzz2sgmihzf6pf75clr05mqj6218camwrwajpcbgqk";
|
||||||
rev = "v${version}";
|
|
||||||
sha256 = "020a59x9kbrbhh207j62gw55pj7p5rvz01i6ml6xhpcghp7l50b4";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ autoreconfHook zlib ];
|
buildInputs = [ zlib ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
doCheck = true;
|
||||||
homepage = http://code.google.com/p/protobuf/;
|
|
||||||
|
meta = {
|
||||||
description = "Protocol Buffers - Google's data interchange format";
|
description = "Protocol Buffers - Google's data interchange format";
|
||||||
|
|
||||||
longDescription =
|
longDescription =
|
||||||
'' Protocol Buffers are a way of encoding structured data in an
|
'' Protocol Buffers are a way of encoding structured data in an
|
||||||
efficient yet extensible format. Google uses Protocol Buffers for
|
efficient yet extensible format. Google uses Protocol Buffers for
|
||||||
almost all of its internal RPC protocols and file formats.
|
almost all of its internal RPC protocols and file formats.
|
||||||
'';
|
'';
|
||||||
license = licenses.bsd3;
|
|
||||||
platforms = platforms.all;
|
license = "mBSD";
|
||||||
maintainers = with maintainers; [ wkennington ];
|
|
||||||
|
homepage = http://code.google.com/p/protobuf/;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue