lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #5014 from doublec/tor

Update Tor to 0.2.5.10.

vbgl 3e8fd1b3 85524140

+3 -3
+3 -3
pkgs/tools/security/tor/default.nix
··· 1 1 { stdenv, fetchurl, libevent, openssl, zlib }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "tor-0.2.4.24"; 4 + name = "tor-0.2.5.10"; 5 5 6 6 src = fetchurl { 7 7 url = "https://archive.torproject.org/tor-package-archive/${name}.tar.gz"; 8 - sha256 = "1l8aczqz8injzcj3mabx4figl8ahkzb0vs9s3nir6kn0b1l5rccr"; 8 + sha256 = "0fx8qnwh2f8ykfx0np4hyznjfi4xfy96z59pk96y3zyjvjjh5pdk"; 9 9 }; 10 10 11 11 buildInputs = [ libevent openssl zlib ]; ··· 31 31 32 32 license="mBSD"; 33 33 34 - maintainers = with stdenv.lib.maintainers; [ phreedom ludo ]; 34 + maintainers = with stdenv.lib.maintainers; [ phreedom ludo doublec ]; 35 35 platforms = stdenv.lib.platforms.gnu; # arbitrary choice 36 36 }; 37 37 }