nixpkgs/pkgs/tools/security/tor/default.nix
Shea Levy 8934644d20 tor: minor cleanups
Signed-off-by: Shea Levy <shea@shealevy.com>
2013-03-08 19:15:26 -05:00

40 lines
1.2 KiB
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ stdenv, fetchurl, libevent, openssl, zlib }:
stdenv.mkDerivation rec {
name = "tor-0.2.3.25";
src = fetchurl {
url = "http://www.torproject.org/dist/${name}.tar.gz";
sha256 = "bb2d6f1136f33e11d37e6e34184143bf191e59501613daf33ae3d6f78f3176a0";
};
buildInputs = [ libevent openssl zlib ];
CFLAGS = "-lgcc_s";
doCheck = true;
meta = {
homepage = http://www.torproject.org/;
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 =
[ # Russell OConnor <roconnor@theorem.ca> ?
stdenv.lib.maintainers.ludo
];
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
};
}