1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/protobuf/default.nix
Domen Kožar b851e970da Revert "protobuf: 2.5.0 -> 2.6.0"
This reverts commit 5dff5ede0a.
2014-09-18 13:12:01 +02:00

29 lines
702 B
Nix

{ fetchurl, stdenv, zlib }:
stdenv.mkDerivation rec {
name = "protobuf-2.5.0";
src = fetchurl {
url = "http://protobuf.googlecode.com/files/${name}.tar.bz2";
sha256 = "0xxn9gxhvsgzz2sgmihzf6pf75clr05mqj6218camwrwajpcbgqk";
};
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/;
};
}