nixpkgs: tor-browser 4.0.1 -> 4.0.2

Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
Austin Seipp 2014-12-06 04:43:06 -06:00
parent 92eb86e110
commit c3bdbd3b52

View File

@ -20,13 +20,13 @@ let
in stdenv.mkDerivation rec { in stdenv.mkDerivation rec {
name = "tor-browser-${version}"; name = "tor-browser-${version}";
version = "4.0.1"; version = "4.0.2";
src = fetchurl { src = fetchurl {
url = "https://archive.torproject.org/tor-package-archive/torbrowser/${version}/tor-browser-linux${bits}-${version}_en-US.tar.xz"; url = "https://archive.torproject.org/tor-package-archive/torbrowser/${version}/tor-browser-linux${bits}-${version}_en-US.tar.xz";
sha256 = if bits == "64" then sha256 = if bits == "64" then
"1cz36g7jfcz8xs7sa2fl44g1bxlrl0psbsx5hig6j5ydsl87vyak" else "02ibpkfq6cmr5dxgps9hr0dk1vgmda3m4g24yq6cg15sp94147mh" else
"135ya109skzd4x8zhmsiwjg6d533yijbdrscm36lsplgcf7dx8l3"; "1cxhkbdrwixfg81wwd6hdf5zbil12mff4yfqxzlwp55iqh49skry";
}; };
patchPhase = '' patchPhase = ''
@ -64,10 +64,11 @@ in stdenv.mkDerivation rec {
buildInputs = [ stdenv ]; buildInputs = [ stdenv ];
meta = with stdenv.lib; { meta = {
description = "Tor Browser Bundle for GNU/Linux, everything you need to safely browse the Internet"; description = "Tor Browser Bundle";
homepage = https://www.torproject.org/; homepage = https://www.torproject.org/;
platforms = ["i686-linux" "x86_64-linux"]; platforms = stdenv.lib.platforms.linux;
maintainers = [ maintainers.offline maintainers.matejc maintainers.doublec ]; maintainers = with stdenv.lib.maintainers;
[ offline matejc doublec thoughtpolice ];
}; };
} }