mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
tor: meta improvements
This commit is contained in:
parent
6af34124a4
commit
61f110e890
@ -25,25 +25,25 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://www.torproject.org/;
|
homepage = https://www.torproject.org/;
|
||||||
repositories.git = https://git.torproject.org/git/tor;
|
repositories.git = https://git.torproject.org/git/tor;
|
||||||
description = "Anonymous network router to improve privacy on the Internet";
|
description = "Anonymizing overlay network";
|
||||||
|
|
||||||
longDescription=''
|
longDescription = ''
|
||||||
Tor protects you by bouncing your communications around a distributed
|
Tor helps improve your privacy by bouncing your communications around a
|
||||||
network of relays run by volunteers all around the world: it prevents
|
network of relays run by volunteers all around the world: it makes it
|
||||||
somebody watching your Internet connection from learning what sites you
|
harder for somebody watching your Internet connection to learn what sites
|
||||||
visit, and it prevents the sites you visit from learning your physical
|
you visit, and makes it harder for the sites you visit to track you. Tor
|
||||||
location. Tor works with many of your existing applications, including
|
works with many of your existing applications, including web browsers,
|
||||||
web browsers, instant messaging clients, remote login, and other
|
instant messaging clients, remote login, and other applications based on
|
||||||
applications based on the TCP protocol.
|
the TCP protocol.
|
||||||
'';
|
'';
|
||||||
|
|
||||||
license="mBSD";
|
license = licenses.bsd3;
|
||||||
|
|
||||||
maintainers = with stdenv.lib.maintainers;
|
maintainers = with maintainers;
|
||||||
[ phreedom doublec thoughtpolice ];
|
[ phreedom doublec thoughtpolice joachifm ];
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user