Updating Google Protocol Buffers, and removing an old version because
I think it is unreferenced. svn path=/nixpkgs/trunk/; revision=30969
This commit is contained in:
parent
cf247dcce0
commit
121a926167
3 changed files with 2 additions and 31 deletions
|
@ -1,28 +0,0 @@
|
|||
{ fetchurl, stdenv, zlib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "protobuf-2.2.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://protobuf.googlecode.com/files/${name}.tar.bz2";
|
||||
sha256 = "0jvj7i0fifl4fqjf84f67chb9b6q2z1jqkfc1zic9fz035mzn7bk";
|
||||
};
|
||||
|
||||
buildInputs = [ 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 = http://code.google.com/p/protobuf/;
|
||||
};
|
||||
}
|
|
@ -1,11 +1,11 @@
|
|||
{ fetchurl, stdenv, zlib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "protobuf-2.3.0";
|
||||
name = "protobuf-2.4.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://protobuf.googlecode.com/files/${name}.tar.bz2";
|
||||
sha256 = "1b40cb7ij4bnw78k46y0a2jkm8qisxkk1gbbj40yi77yqc3pf33n";
|
||||
sha256 = "1gxhfhk37jyjq1z4y3d4bz4i1fk2an5ydhk5kjzlp0rhfcs5516g";
|
||||
};
|
||||
|
||||
buildInputs = [ zlib ];
|
||||
|
|
|
@ -4426,7 +4426,6 @@ let
|
|||
postgis = callPackage ../development/libraries/postgis { };
|
||||
|
||||
protobuf = callPackage ../development/libraries/protobuf { };
|
||||
protobuf_2_2_0 = callPackage ../development/libraries/protobuf/2.2.0.nix { };
|
||||
|
||||
pth = callPackage ../development/libraries/pth { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue