1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 13:10:33 +00:00

Revert "protobuf: Update to 2.6.0"

This reverts commit 859a2c446c.

Breaks a bunch of reverse dependencies.
This commit is contained in:
Domen Kožar 2014-08-29 18:42:25 +02:00
parent 29c0aa5748
commit 3b6f5050a1

View file

@ -1,11 +1,11 @@
{ fetchurl, stdenv, zlib }:
stdenv.mkDerivation rec {
name = "protobuf-2.6.0";
name = "protobuf-2.5.0";
src = fetchurl {
url = "http://protobuf.googlecode.com/svn-history/r579/rc/protobuf-2.6.0.tar.bz2";
sha256 = "0krfkxc85vfznqwbh59qlhp7ld81al9ss35av0gfbg74i0rvjids";
url = "http://protobuf.googlecode.com/files/${name}.tar.bz2";
sha256 = "0xxn9gxhvsgzz2sgmihzf6pf75clr05mqj6218camwrwajpcbgqk";
};
buildInputs = [ zlib ];