38 lines
1.2 KiB
Nix
38 lines
1.2 KiB
Nix
{ stdenv, fetchurl, libevent, openssl, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "tor-0.2.4.21";
|
|
|
|
src = fetchurl {
|
|
url = "https://archive.torproject.org/tor-package-archive/${name}.tar.gz";
|
|
sha256 = "1kpijqapml7y4sl54qgyrzppxxhmy4xgk2y7wkqwjxn7q24g97d1";
|
|
};
|
|
|
|
buildInputs = [ libevent openssl zlib ];
|
|
|
|
CFLAGS = "-lgcc_s";
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
homepage = http://www.torproject.org/;
|
|
repositories.git = https://git.torproject.org/git/tor;
|
|
description = "Tor, an anonymous network router to improve privacy on the Internet";
|
|
|
|
longDescription=''
|
|
Tor protects you by bouncing your communications around a distributed
|
|
network of relays run by volunteers all around the world: it prevents
|
|
somebody watching your Internet connection from learning what sites you
|
|
visit, and it prevents the sites you visit from learning your physical
|
|
location. Tor works with many of your existing applications, including
|
|
web browsers, instant messaging clients, remote login, and other
|
|
applications based on the TCP protocol.
|
|
'';
|
|
|
|
license="mBSD";
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ phreedom ludo ];
|
|
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
|
|
};
|
|
}
|