Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

obfs4: add meta fields #200750

Merged
merged 1 commit into from Nov 21, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion pkgs/tools/networking/obfs4/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,23 @@ buildGoModule rec {
vendorSha256 = "0yjanv5piygffpdfysviijl7cql2k0r05bsxnlj4hbamsriz9xqy";

meta = with lib; {
description = "A pluggable transport proxy";
description = "Circumvents censorship by transforming Tor traffic between clients and bridges";
longDescription = ''
Obfs4proxy is a tool that attempts to circumvent censorship by
transforming the Tor traffic between the client and the bridge.
This way censors, who usually monitor traffic between the client
and the bridge, will see innocent-looking transformed traffic
instead of the actual Tor traffic. obfs4proxy implements the
obfsucation protocols obfs2, obfs3, and obfs4. It is written in
Go and is compliant with the Tor pluggable transports
specification, and its modular architecture allows it to support
multiple pluggable transports.
'';
homepage = "https://www.torproject.org/projects/obfsproxy";
maintainers = with maintainers; [ thoughtpolice ];
mainProgram = "obfs4proxy";
changelog = "https://gitweb.torproject.org/pluggable-transports/obfs4.git/plain/ChangeLog";
downloadPage = "https://gitweb.torproject.org/pluggable-transports/obfs4.git/";
license = with lib.licenses; [ bsd2 bsd3 gpl3 ];
};
}