Update Tor to 0.2.5.10.

Updates Tor to latest stable version.

Add myself to the maintainer list.
This commit is contained in:
Chris Double 2014-11-18 01:14:16 +13:00
parent 5b0756cd21
commit 75425ff879

View file

@ -1,11 +1,11 @@
{ stdenv, fetchurl, libevent, openssl, zlib }:
stdenv.mkDerivation rec {
name = "tor-0.2.4.24";
name = "tor-0.2.5.10";
src = fetchurl {
url = "https://archive.torproject.org/tor-package-archive/${name}.tar.gz";
sha256 = "1l8aczqz8injzcj3mabx4figl8ahkzb0vs9s3nir6kn0b1l5rccr";
sha256 = "0fx8qnwh2f8ykfx0np4hyznjfi4xfy96z59pk96y3zyjvjjh5pdk";
};
buildInputs = [ libevent openssl zlib ];
@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
license="mBSD";
maintainers = with stdenv.lib.maintainers; [ phreedom ludo ];
maintainers = with stdenv.lib.maintainers; [ phreedom ludo doublec ];
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
};
}