2016-08-26 15:14:28 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libevent, openssl, zlib, torsocks
|
|
|
|
, libseccomp, systemd, libcap
|
|
|
|
}:
|
2010-05-16 16:23:32 +00:00
|
|
|
|
2010-05-24 21:28:54 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-12-03 02:12:56 +00:00
|
|
|
name = "tor-0.2.8.10";
|
2010-05-16 16:23:32 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-05-07 13:17:03 +00:00
|
|
|
url = "https://archive.torproject.org/tor-package-archive/${name}.tar.gz";
|
2016-12-03 02:12:56 +00:00
|
|
|
sha256 = "0kcw9hq4xz8p91xwyhjfry5p1dmn7vvnhpfz66vl9gsfndbqr2y8";
|
2010-05-16 16:23:32 +00:00
|
|
|
};
|
|
|
|
|
2016-08-26 15:14:28 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libevent openssl zlib ] ++
|
|
|
|
stdenv.lib.optionals stdenv.isLinux [ libseccomp systemd libcap ];
|
2010-05-24 21:28:43 +00:00
|
|
|
|
2015-07-17 16:22:27 +00:00
|
|
|
NIX_CFLAGS_LINK = stdenv.lib.optionalString stdenv.cc.isGNU "-lgcc_s";
|
2013-03-08 15:43:30 +00:00
|
|
|
|
2016-08-26 15:14:28 +00:00
|
|
|
postPatch = ''
|
2014-12-06 04:37:47 +00:00
|
|
|
substituteInPlace contrib/client-tools/torify \
|
|
|
|
--replace 'pathfind torsocks' true \
|
|
|
|
--replace 'exec torsocks' 'exec ${torsocks}/bin/torsocks'
|
|
|
|
'';
|
|
|
|
|
2016-08-26 15:14:28 +00:00
|
|
|
# Fails in a sandboxed environment; at some point we want to disable
|
|
|
|
# just the tests that require networking.
|
|
|
|
doCheck = false;
|
2010-05-16 16:23:32 +00:00
|
|
|
|
2016-04-30 16:11:06 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://www.torproject.org/;
|
2014-03-20 11:29:06 +00:00
|
|
|
repositories.git = https://git.torproject.org/git/tor;
|
2016-04-30 16:11:06 +00:00
|
|
|
description = "Anonymizing overlay network";
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
Tor helps improve your privacy by bouncing your communications around a
|
|
|
|
network of relays run by volunteers all around the world: it makes it
|
|
|
|
harder for somebody watching your Internet connection to learn what sites
|
|
|
|
you visit, and makes it harder for the sites you visit to track you. Tor
|
|
|
|
works with many of your existing applications, including web browsers,
|
|
|
|
instant messaging clients, remote login, and other applications based on
|
|
|
|
the TCP protocol.
|
2010-05-16 16:23:32 +00:00
|
|
|
'';
|
|
|
|
|
2016-04-30 16:11:06 +00:00
|
|
|
license = licenses.bsd3;
|
2010-05-24 21:28:54 +00:00
|
|
|
|
2016-04-30 16:11:06 +00:00
|
|
|
maintainers = with maintainers;
|
|
|
|
[ phreedom doublec thoughtpolice joachifm ];
|
|
|
|
platforms = platforms.unix;
|
2010-05-24 21:28:54 +00:00
|
|
|
};
|
2010-05-16 16:23:32 +00:00
|
|
|
}
|