2016-08-26 16:14:28 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libevent, openssl, zlib, torsocks
|
2019-01-09 03:20:24 +00:00
|
|
|
, libseccomp, systemd, libcap, lzma, zstd, scrypt
|
2018-03-04 22:11:09 +00:00
|
|
|
|
|
|
|
# for update.nix
|
|
|
|
, writeScript
|
|
|
|
, common-updater-scripts
|
|
|
|
, bash
|
|
|
|
, coreutils
|
|
|
|
, curl
|
|
|
|
, gnugrep
|
|
|
|
, gnupg
|
|
|
|
, gnused
|
|
|
|
, nix
|
2016-08-26 16:14:28 +01:00
|
|
|
}:
|
2010-05-16 17:23:32 +01:00
|
|
|
|
2010-05-24 22:28:54 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-01-09 03:24:56 +00:00
|
|
|
name = "tor-0.3.5.7";
|
2010-05-16 17:23:32 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-01-24 23:27:53 +00:00
|
|
|
url = "https://dist.torproject.org/${name}.tar.gz";
|
2019-01-09 03:24:56 +00:00
|
|
|
sha256 = "17l31p58rsd30w4b6r4d8pbr84z3y7awahvjxbpmnlxc47y8f20v";
|
2010-05-16 17:23:32 +01:00
|
|
|
};
|
|
|
|
|
2017-03-02 02:09:27 +00:00
|
|
|
outputs = [ "out" "geoip" ];
|
|
|
|
|
2016-08-26 16:14:28 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2019-01-09 03:20:24 +00:00
|
|
|
buildInputs = [ libevent openssl zlib lzma zstd scrypt ] ++
|
2016-08-26 16:14:28 +01:00
|
|
|
stdenv.lib.optionals stdenv.isLinux [ libseccomp systemd libcap ];
|
2010-05-24 22:28:43 +01:00
|
|
|
|
2015-07-17 17:22:27 +01:00
|
|
|
NIX_CFLAGS_LINK = stdenv.lib.optionalString stdenv.cc.isGNU "-lgcc_s";
|
2013-03-08 15:43:30 +00:00
|
|
|
|
2016-08-26 16:14:28 +01: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'
|
|
|
|
'';
|
|
|
|
|
2018-09-05 02:13:16 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
enableParallelChecking = false; # 4 tests fail randomly
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2017-03-02 02:09:27 +00:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $geoip/share/tor
|
|
|
|
mv $out/share/tor/geoip{,6} $geoip/share/tor
|
|
|
|
rm -rf $out/share/tor
|
|
|
|
'';
|
|
|
|
|
2018-03-04 22:11:09 +00:00
|
|
|
passthru.updateScript = import ./update.nix {
|
|
|
|
inherit (stdenv) lib;
|
|
|
|
inherit
|
|
|
|
writeScript
|
|
|
|
common-updater-scripts
|
|
|
|
bash
|
|
|
|
coreutils
|
|
|
|
curl
|
|
|
|
gnupg
|
|
|
|
gnugrep
|
|
|
|
gnused
|
|
|
|
nix
|
|
|
|
;
|
|
|
|
};
|
|
|
|
|
2016-04-30 17:11:06 +01: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 17:11:06 +01: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 17:23:32 +01:00
|
|
|
'';
|
|
|
|
|
2016-04-30 17:11:06 +01:00
|
|
|
license = licenses.bsd3;
|
2010-05-24 22:28:54 +01:00
|
|
|
|
2016-04-30 17:11:06 +01:00
|
|
|
maintainers = with maintainers;
|
|
|
|
[ phreedom doublec thoughtpolice joachifm ];
|
|
|
|
platforms = platforms.unix;
|
2010-05-24 22:28:54 +01:00
|
|
|
};
|
2010-05-16 17:23:32 +01:00
|
|
|
}
|